我有这个文件夹stu 根文件夹 - 项目
/Document/office/ 中的项目文件夹
|文件夹
-> 文件
Project
-> config.py
-> app.py
| Src
-> abc.py
-> xyz.py
| test
-> testcase.py
1 case I want to import config.py in abc.py and xyz.py and in testcase.py
2 case i want to import src.abc in app.py
3 case i want to import abc in test.testcase.py
我怎样才能在Python中瘦身
我想这样导入
导入配置
导入src.abc
from path_to_module import module_name as named_by_you
如果您需要更多信息,请阅读以下内容:如何导入其他 Python 文件?