为什么在添加“ as”时获取模块没有属性错误

时间:2019-01-03 20:34:46

标签: python

我有一个目录module,其中有一个python文件tools.py

我需要从tools.py的父目录中导入module

我指定import module.tools时一切正常。

但是import module.tools as tools不起作用。我收到一个错误:Module module has no attribute tools

1 个答案:

答案 0 :(得分:0)

使用as,而不要使用from module import tools。这只会从tools中导入module

from module import tools

如果要将工具重命名为更短的名称,则可以稍后在代码中进行。

t = tools