本文介绍了python从父包导入模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下目录结构

foo/
    __init__.py
    settings.py
    bar/
        __init__.py
        myfile.py

在 myfile.py 我有:导入设置

In myfile.py I have: import settings

我收到以下错误:ImportError: No module named settings,为什么?如何有效地从 myfile.py

I get the following error: ImportError: No module named settings, why? How can I efectively import the settings file from myfile.py

推荐答案

来自 http://docs.python.org/2/tutorial/modules.html#intra-package-references :

from .. import settings

希望能帮到你

这篇关于python从父包导入模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-28 11:34
查看更多