L = [1,3,4,6,8,9,11,12,13]
for x in L:
if x % 2 == 0:
L.remove(x)
else:
continue
print(L)
为什么结果是
[1, 3, 6, 9, 11, 13]
6为什么会出现。。。。。
相关分类