我确定我正在做一些令人尴尬和愚蠢的事情,但是是否可以从 two.py 中的函数(文件在同一目录中)访问 one.py 中导入的模块?
一个.py
import requests
import two
print(two.get_google())
二.py
def get_google():
return requests.get('http://google.com')
我得到的错误...
python3 one.py
Traceback (most recent call last):
File "one.py", line 3, in <module>
print(two.get_google())
File "/myfolder/two.py", line 2, in get_google
return requests.get('http://google.com')
NameError: name 'requests' is not defined
提前致谢和道歉..
相关分类