FFIVE
我可以在循环时修改列表:lst = range(10) // [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]for i, elem in enumerate(lst):
lst[i] = 0 // [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]