当前位置:首页 > python

列表的删除方法练习题

admin3个月前 (01-26)python7896
# 练习: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://www.kuangmin.top/post/100.html

分享给朋友:

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

dp爬起点中文网

from DrissionPage import WebPage page = WebPage() url = 'https://www.qidian.com/chapter/1036370336/74597756…

一道数学题

# 已知50个1998相乘的结果是a,a的各位数的和是b, b的各位数的和是c,c的各位数的和是d, # 求d的值 a = 1998 ** 50 print(a) str_a = str(a) b&nbs…

制作自动答题脚本教程

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

dp爬同花顺

from DrissionPage import ChromiumPage dp = ChromiumPage() dp.get('https://data.10jqka.com.cn/rank/cxg/') for&nbs…

跳转新标签页获取元素

from DrissionPage import Chromium browser = Chromium() tab = browser.latest_tab tab.get('https://www.163.c…

python读文件操作

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