目录结构如下
-- dir0 | file2.py | dir1 | __init__.py | file3.py
在 file3.py中导入file2.py 在file3.py中新建 __init__.py
file3.py
file2.py
__init__.py
import sys sys.path.append("..")
然后在file3.py中
from ..file2 import xxx
即可使用 __init__.py 作用是将文件夹变为一个Python模块 Python __init__.py 作用详解