我的Windows批处理文件:
python test.py
pause
test.py:
import test_import
print(greeting)
test_import.py:
greeting='hello world'
这不起作用。我收到一条错误消息,说未定义“问候”。我想向您展示输出,但是我也遇到了麻烦。
在test_import.py中需要更改什么,以便可以在主模块中访问该变量?
答案 0 :(得分:2)
更改您的test.py:
import test_import
print(test_import.greeting)
或
from test_import import greeting
print(greeting)