从 。导入XXXX
在我的一个 Python 包中,__init__.py
文件包含语句
from . import XXXX
What does the "."是指这里吗?我通过查看另一个包获得了这项技术,但我不明白它的含义。
In one of my Python packages the __init__.py
file contains the statement
from . import XXXX
What does the "." mean here? I got this technique by looking at another package, but I don't understand what it means.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它是相对进口的。
来自: http://docs.python.org/py3k/reference /simple_stmts.html#the-import-语句
Its a relative import.
From: http://docs.python.org/py3k/reference/simple_stmts.html#the-import-statement
这是一个相对导入。
It's a relative import.