如何在脚本中导入函数(函数在父文件夹的子文件夹中定义)?
在下面的文件夹结构中,我想使用
root_folder/
utils_folder:
__init__.py
helper_functions.py (where Function_A is defined)
module_A_folder:
Script_A.py (Function_A will be imported and used here)
脚本_A.py需要使用函数_A。utils_folder
的__init__.py
定义为:
from .helper_functions import Function_A
当我尝试在Script_A.py
中导入Function_A时,如下所示:
from ..utils import Function_A
我收到以下错误:
ImportError: attempted relative import with no known parent package
我怎么才能让这个工作?我用Python 3.9 x64。
1条答案
按热度按时间llycmphe1#
请尝试: