lst = ['周老二', '周星星', '麻花藤', '周扒皮']
for i in range(len(lst)-1,-1,-1):
lst.pop(i)
print(lst)
直接删空
for i in range(len(lst)-1,-1,-1):
lst.remove(lst[i])
print(lst)
直接删空
lst = ['周老二', '周星星', '麻花藤', '周扒皮']
for i in range(len(lst)):
lst.remove(lst[i])
print(lst) # 报错:IndexError: list index out of range
lst = ['周老二', '周星星', '麻花藤', '周扒皮']
for i in range(len(lst)-1,-1,-1):
if lst[i][0] =='周':
lst.remove(lst[i])
print(lst)
删除姓周的
lst = ['周老二', '周星星', '麻花藤', '周扒皮']
for i in range(len(lst)-1,-1,-1):
if lst[i][0] =='周':
lst.pop(i)
print(lst)
lst = ['周老二', '周星星', '麻花藤', '周扒皮']
lst1=[]
for i in lst:
if i.startswith('周'):
lst1.append(i)
for j in lst1:
lst.remove(j)
print(lst)
删除 周
第一
lst = ['周老二', '周星星', '麻花藤', '周扒皮']
for i in range(len(lst)):
lst.pop()
print(lst)
第二
li=[]
for e in lst:
li.append(e)
for e in li:
lst.remove(e)
print(lst)