在脚本 article.py 中引入当前目录下的 __init__.py 的内容报错 ImportError: cannot import name 'fake'路径test/__init__.pyarticle.py文件 __init__.py 中# -*- coding:utf-8 -*-def fake():
print('A')文件 article.py 中# -*- coding:utf-8 -*-from . import fakeprint(fake)执行 python article.py 报错提示:Traceback (most recent call last): File "article.py", line 2, in <module> from . import fake
ImportError: cannot import name 'fake'如何在 article.py 中引入 __init__.py 中的内容
添加回答
举报
0/150
提交
取消