python项目中不同文件夹py源文件之间如何相
2个回答
展开全部
使用 from ... import ... 可以导入其它文件夹中的模块,举个例子,在 main.py 模块中调用 在其它文件夹中的 test.py, test2.py 模块,test.py 在utils文件夹中, test2.py 在utils\sub 文件夹中,代码如下:
main.py
#coding=utf-8
# 使用 from ...import ... 导入test,test2模块
from utils import test
from utils.sub import test2
test.hello()
test2.hello()
test.py 文件,在 utils 文件夹下
#coding=utf-8
def hello():
print('Hello, Greetings from', __name__)
test2.py 文件,在 utils\sub 文件夹下
#coding=utf-8
def hello():
print('Hello, Greetings from', __name__)
运行结果:
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询