i=1#加不加这行结果都一样 for i in range(4): print(i) print(i)
输出: 0 1 2 3 3
需要小心其它变量和循环变量重名导致无意修改 嵌套循环的各循环变量名必须不同