Python导入全局变量

时间:2016-11-16 14:53:38

标签: python import global-variables

我有file2.py:

a = 1
from file2 import *
print(add(3))

在file1.py中:

NameError: global name 'a' is not defined

它给了我一个错误:System.out.println

如何获得4号? 提前谢谢!

0 个答案:

没有答案