. ├── main.py └── same ├── api │ └── init.py ├── auth │ └── init.py ├── auth.py └── init.py
from future import print_function from same.api import auth # Script starts from here if name == "main": print(auth.auth_str)
This is str in package!
这里验证了我们的猜想是正确的,解释器的确只导入了包中内容。但是,我并不知道是否有官方的资料说明就是这样的,所以我不敢确信,万一这只是巧合呢。
于是,我开始查资料来验证这一结论。我就说实话吧,对于一个英文水平烂到你无法想象的我,只能先尝试用百度搜索下答案了。事实是,用百度往往都是遗憾的。片刻后,无果,我只能硬着头皮尝试英文搜索了。于是,在 stackoverflow 上找到了如下提问:
How python deals with module and package having the same name?
其中有一个人回答说 Python 官方文档中在描述模块搜索路径时提到了这一点:docs.python.org/3/tutorial/modules.html#the-module-search-path.
文档中有如下一段描述:
After initialization, Python programs can modify sys.path. The directory containing the script being run is placed at the beginning of the search path, ahead of the standard library path. This means that scripts in that directory will be loaded instead of modules of the same name in the library directory. This is an error unless the replacement is intended. See section Standard Modules for more information.
也就是说,目录在库的搜索路径下会首先被搜索,这就意味着目录会代替同名的模块被加载。
这下终于放心了,之前的结论得到证实。在 Python 中,如果尝试导入同名的模块和包时,包会被导入。这种情况下,如果想要导入模块,恐怕要用一些 ‘hack' 的方法,上面提到的 stackoverflow 帖下有一些示例可以参考。当然,最好的方法是避免这样的设计,这样你就不会花那么长时间去查资料,也不会花那么长时间来写类似于本文的文章。
总结
【相关推荐】
1. 特别推荐 : “php程序员工具箱”V0.1版本下载
2. Python免费视频教程
3. Python面向对象视频教程
以上就是Python模块和包重名的解决方法的详细内容,更多请关注Gxl网其它相关文章!
查看更多关于Python模块和包重名的解决方法的详细内容...