当前位置:首页 > python

列表的删除方法练习题

admin8个月前 (01-26)python8056
# 练习:list1 = [1,2,3,4,5,5,4,3,2,1,1,2,3,4,5]
# 需求:使用 remove 删除所有的 5
list1 = [1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 1, 2, 3, 4, 5]
count = list1.count(5)
for i in range(count):
    list1.remove(5)
print(list1)

# 需求:使用 pop 删除所有的 5
# list1 = [1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 1, 2, 3, 4, 5]
# for i in range(len(list1) - 1, -1, -1):
#     if list1[i] == 5:
#         list1.pop(i)
#
# print(list1)
# 需求:使用 del 删除所有的 5
# list1 = [1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 1, 2, 3, 4, 5]
# for i in range(len(list1) - 1, -1, -1):
#     if list1[i] == 5:
#         del list1[i]
# 
# print(list1)


扫描二维码推送至手机访问。

版权声明:本文由匡民博客发布,如需转载请注明出处。

本文链接:https://kuangmin.top/post/100.html

分享给朋友:

“列表的删除方法练习题” 的相关文章

dp爬boss直聘

# url='https://www.zhipin.com/web/geek/job?query=python&city=101010100&page=1' from DrissionPage import ChromiumP…

制作自动答题脚本教程

基本的操作,联系下不错Python DrissionPage 制作自动答题脚本_哔哩哔哩_bilibili…

python读文件操作

# 打开名为 '111.txt' 的文件,以只读模式读取,文件编码为 utf-8 with open('111.txt', 'r', encoding='utf-8'…

《Python入门100题》之第一题:三位组合

第一题:有1,2,3,4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?list1 = [1, 2, 3, 4] list2 = [] for a in list1:  &…

《Python入门100题》之第三题:整数排序

题目:输入三个整数x,y,z,请把这三个数由小到大输出.x = int(input('请输入第一个整数:')) y = int(input('请输入第二个整数:')) z = int(input('…

Spiderdemo第一题

import requests session = requests.session() session.headers.clear() cookies = {     'session…