📌  相关文章
📜  如何从 pyhon 中的另一个目录导入 somthing - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:23.292000             🧑  作者: Mango

代码示例2
# some_file.py
import sys
# insert at 1, 0 is the script path (or '' in REPL)
sys.path.insert(1, '/path/to/application/app/folder')

import file