编程语言
首页 > 编程语言> > python的for循环变量在外部也有效

python的for循环变量在外部也有效

作者:互联网

i=1#加不加这行结果都一样
for i in range(4):
    print(i)
print(i)

输出:
0
1
2
3
3

需要小心其它变量和循环变量重名导致无意修改
嵌套循环的各循环变量名必须不同

标签:加不加,变量,python,外部,嵌套循环,循环,print
来源: https://blog.csdn.net/lycwhu/article/details/121574756