python遇到的坑

1、for 循环不能直接丢修改列表元素的值

想要修改要通过列表的索引

l = [1,2,3,4]
for i in l:
    i = i+1
    
print(l)
[1, 2, 3, 4]

你可能感兴趣的:(python遇到的坑)