python:如何将一个list的第2,5,6,7,8项同时删去?
来源:学生作业帮 编辑:大师作文网作业帮 分类:英语作业 时间:2024/11/11 16:22:27
python:如何将一个list的第2,5,6,7,8项同时删去?
现在一个list叫p,p=[2,5,6,7,8],如果我写成
for i in p:
del mylist[i]
就会out of range.
现在一个list叫p,p=[2,5,6,7,8],如果我写成
for i in p:
del mylist[i]
就会out of range.
p.sort(reverse=True)
for i in p:
del mylist[i]
这样是删掉index是2,5,6,7,8的,如果你要第2,5,6,7,8项的话,应该是del mylist[i-1]
再问: 非常感谢,成功了。能不能讲解一下。p.sort(reverse=True)表示没有看懂
再答: it sorts p in reverse order. thus you del 8,7,6,5, then 2, avoiding disrupting the index of mylist
for i in p:
del mylist[i]
这样是删掉index是2,5,6,7,8的,如果你要第2,5,6,7,8项的话,应该是del mylist[i-1]
再问: 非常感谢,成功了。能不能讲解一下。p.sort(reverse=True)表示没有看懂
再答: it sorts p in reverse order. thus you del 8,7,6,5, then 2, avoiding disrupting the index of mylist
python:如何将一个list的第2,5,6,7,8项同时删去?
python 如何把list中元素一个对一个的换成对应的数字 list = ['abc', 'def', 'ghi']
python将list存入字典
python如何把List里的不同数字相加成一个数字
python的列表转换为字典:list=[(1,2),(3,4),(5,6)]如何能转换成字典dict={2:1,4:3
如何将数据库表中的内容导入到python字典,建了一个表,想把表中的内容放到python的字典中
python如何使两个不同list中的数相加
python 中如何将str(dict)后的字典还原?
从正整数1,2,3,4,5,.中删去所有的平方数,得到一个新数列,则这个新数列的第1964项是?
python几个长的正则如何合成一个正则
将card删去一个字母,组成一个新的单词.
如何处理python的字典?