12

根据python 文档,从 python 2.5 开始就支持相对导入和包内引用。我目前正在运行 Python 2.7.3。因此,我尝试在自己的包中实现这一点,以便将其用于更简单的导入。我惊讶地发现它向我抛出了一个 SyntaxError 异常,我希望有人能帮助解决这个问题。

我设置了一个测试目录进行测试:

tester
├── __init__.py
├── first_level.py
└── sub
    ├── __init__.py
    └── second_level.py

两个 __init__.py 模块都是空的。其他模块是:


# first_level.py
print "This is the first level of the package"

# sub/second_level.py
import ..first_level
print "This is the second level"

当我尝试导入 second_level 模块时,出现以下错误:

Python 2.7.3 (default, Aug  1 2012, 14:42:42) 
[GCC 4.2.1 Compatible Apple Clang 4.0 ((tags/Apple/clang-421.0.57))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Welcome!
>>> import tester
>>> import tester.sub.second_level
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "tester/sub/second_level.py", line 1
    import ..first_level
           ^
SyntaxError: invalid syntax

我希望这两行一个接一个地打印,但它引发了一个异常。那么,我是否做错了导入?你还有其它的想法吗。

4

2 回答 2

16

你不能像那样导入模块。 import ..blah不是有效的导入语法。你需要做from .. import first_level

于 2012-09-13T02:10:45.440 回答
-2

我通常会做类似的事情:

import sys 
sys.path.append("/home/me/tester")
import first_level 

希望这可以帮助。〜本

于 2012-09-13T02:11:10.503 回答