我具有文件结构:
directory_1/
file_1.py
directory_2/
directory_3/
file_2.py
如何将功能从file_1
导入file_2
?
其他答案使我在将from ...file_1 import fun
文件添加到__init__.py
之后尝试了directory_1
,但是这样做给了我ValueError: attempted relative import beyond top-level package
。我也尝试过from directory_1.file_1 import fun
,但这给了我一个ModuleNotFound
错误。
如果有人能帮助我,我将非常感激!