Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 具有相同名称的 Python 模块(即,在包中重用标准模块名称)
从包内的模块中,有没有办法忽略给定导入的包上下文?因为包包含另一个与要从系统而不是包中导入的模块同名的模块。
有没有办法在不重命名其他模块的情况下解决这个问题?
你有没有尝试过...
import mypackage.vim as mypvim import vim
您可以使用“as”语句为您导入的内容提供另一个别名。