python 3 的 exec 如果在方法内执行, exec 的代码中定义的变量好像无法被读取到?
比如下面这代码
def test():
code = "x = 999"
exec(code)
print(x)
if __name__ == '__main__':
test()
在 python2 中可以正确运行,输出 999 ,但在 python 3 中就会出现 NameError: name 'x' is not defined 。
但如果不放在方法内,比如
if __name__ == '__main__':
code = "x = 999"
exec(code)
print(x)
python 2 和 3 就都可以正确运行。
所以问题是:如何在 python 3 中,在方法( func )内,得到 exec(code) 里面所定义的变量?
1
qinxg 2016-09-18 09:45:12 +08:00 1
exec 中的变量 作用域的问题吧
不懂 python 瞎猜的 |
2
mgna17 2016-09-18 09:53:04 +08:00 2
|
4
thisisx7 2016-09-18 15:25:48 +08:00
我在 python3 中做了这样一个实验
http://imgur.com/a/iFa7P 发现已经写进了作用域里面可是为什么不生效呢? 后来在 stackoverflow 里面发现了这个的讨论 在 python3 里面, python 进行了优化 http://stackoverflow.com/questions/25076883/creating-dynamically-named-variables-in-a-function-in-python-3-understanding-e |
5
thisisx7 2016-09-18 15:28:45 +08:00
|