当前位置:首页 > python

列表的删除方法练习题

admin5个月前 (01-26)python7950
# 练习: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

分享给朋友:

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

Drissionpage小小练习

练习页面…

DrissionPage执行js

from DrissionPage import ChromiumPage url = 'https://www.bilibili.com/video/BV1jfztYyEn3/' page = Chr…

制作自动答题脚本教程

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

ddddocr的安装使用

pip install -i https://mirrors.bfsu.edu.cn/pypi/web/simple/  ddddocrfrom DrissionPage import ChromiumPage imp…

dp爬同花顺

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

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

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