如何访问在导入文件中定义的变量?

时间:2019-01-27 00:04:13

标签: python

我的Windows批处理文件:

python test.py
pause

test.py:

import test_import
print(greeting)

test_import.py:

greeting='hello world'

这不起作用。我收到一条错误消息,说未定义“问候”。我想向您展示输出,但是我也遇到了麻烦。

在test_import.py中需要更改什么,以便可以在主模块中访问该变量?

1 个答案:

答案 0 :(得分:2)

更改您的test.py:

import test_import
print(test_import.greeting)

from test_import import greeting
print(greeting)