Python导入头痛

扫码查看
本文介绍了Python导入头痛的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下目录结构:

Main.py
A/
    __init__.py
    B/
        __init__.py
        C/
            __init__.py

文件 Main.py 包含代码

from A import B
from B import C

__ init__。 py 文件为空。
当我运行 Main.py 时,我收到错误消息

The __init__.py files are empty.When I run Main.py I get the error message

Traceback (most recent call last):
    File ...\Main.py, line 2, in <module>
    from B import C
  ImportError: No module named B

是什么导致这个错误消息?

What causes this error message?

推荐答案

处理 import 语句时,Python不会看看你已经进口的东西;它只是查看导入路径中是否存在给定模块。所以你需要这样写:

When processing import statements, Python doesn't look at what you have already imported; it simply looks whether the given module exists in the import path. So you need to write it like this:

from A import B
from A.B import C

这篇关于Python导入头痛的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 06:46
查看更多