我有一个目录module
,其中有一个python文件tools.py
我需要从tools.py
的父目录中导入module
。
我指定import module.tools
时一切正常。
但是import module.tools as tools
不起作用。我收到一个错误:Module module has no attribute tools
答案 0 :(得分:0)
使用as
,而不要使用from module import tools
。这只会从tools
中导入module
。
from module import tools
如果要将工具重命名为更短的名称,则可以稍后在代码中进行。
t = tools