标签: python-3.x
如果这个问题让您烦恼,我真的很陌生
这是我的代码
lst=[5,6,77,45,22,12,24] for i in lst if i%2==0: lst.remove(i) print(lst)
[5,77,45,12]
为什么仍然显示“ 12”?