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 2.6)
如果您无论如何都能够导入该模块运行时,则您可以访问__file__它的属性,这将为您提供模块的确切位置。
__file__
例如:
In [1]: import os In [2]: print os.path.dirname(os.__file__) /usr/lib/python2.7