Python:访问另一个文件中函数中的变量
问题描述
我有两个文件:
lib.py
global var
def test():
var = "Hello!"
return
test.py
from lib import *
test()
print(var)
尽管它们位于同一文件夹中,但当我运行test.py时,我收到以下错误:
Traceback (most recent call last):
File "C:Test est.py", line 5, in <module>
print(var)
NameError: name 'var' is not defined
如何访问另一个文件的函数中的此变量?
解决方案
我推荐以下内容:
lib.py
def test():
return "Hello!"
test.py
from lib import *
var = test()
print(var)
相关文章