Python2错误?在for循环内使用列表理解进行范围界定错误

时间:2019-02-20 19:23:59

标签: python for-loop scope list-comprehension python-2.x

此代码:for i in range(5): m = [i for i in [1,2,3,4]]; print(i)

在Python2.7中打印:4 4 4 4 4

在Python3.6中打印:0 1 2 3 4

这是一个错误吗?

0 个答案:

没有答案