从不同文件夹导入文件
2022-09-05 00:47:36
我有以下文件夹结构:
application
├── app
│ └── folder
│ └── file.py
└── app2
└── some_folder
└── some_file.py
从 里面,如何从 中导入函数?some_file.py
file.py
我试过了:
from application.app.folder.file import func_name