python2中的理解列表工作正常,但是我在python3中收到错误

时间:2018-10-09 11:01:34

标签: python python-3.x list-comprehension

使用综合列表,我有以下代码:

x = int ( input())  
y = int ( input()) 
z = int ( input())
n = int ( input()) 


ret_list = [ (x,y,z) for x in range(x+1) for y in range(y+1) for z in 
range(z+1) if x+y+z!=n ]
print(ret_list)
python2中的

可以正常工作。但是在python3中,出现以下错误:

print([ (x,y,z) for x in range(x+1) for y in range(y+1) for z in range(z+1) if 
x+y+z!=n ])
File "tester.py", line 16, in <listcomp>
print([ (x,y,z) for x in range(x+1) for y in range(y+1) for z in range(z+1) if 
x+y+z!=n ])
UnboundLocalError: local variable 'y' referenced before assignment

我很好奇我做错了什么。我可能会在Python3中丢失某些内容,尽管它在python2中效果很好。谢谢。

1 个答案:

答案 0 :(得分:3)

由于x yz在列表理解中被定义为“局部”变量,因此Python 3认为它们是这样,因此不使用/查看全局值。

Python 2没什么区别(因此退出理解时有些人会观察到变量“ leak”),它的行为就像您使用普通循环一样

这在这里有更好的解释:Python list comprehension rebind names even after scope of comprehension. Is this right?

真正有趣的是python首先抱怨y而不是x。好吧,由于我很好奇,我在这里问了这个问题:why the UnboundLocalError occurs on the second variable of the flat comprehension?

执行此操作的正确方法是为循环索引使用不同的变量名(不确定我选择的名称是否很好,但是至少不管python版本如何,它都可以工作):

ret_list = [ (x1,y1,z1) for x1 in range(x+1) for y1 in range(y+1) for z1 in range(z+1) if x1+y1+z1!=n ]