为什么这个带有for循环的代码最多只能迭代列表的一半?使用while循环时,它将遍历整个列表

时间:2019-05-29 01:28:07

标签: python python-3.x list for-loop iteration

我使用pop()方法通过迭代从列表中删除项目,使用for循环导致删除了列表值的一半,但是,使用while循环运行的同一代码已成功删除所有项目中。

我同时使用了range()函数和一个输入列表。

a = list(range(20))
print(a)
while a!= []:
 print(a.pop())

a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
print(a)
for i in a:    #>>>>?????
 print(a.pop())

0 个答案:

没有答案