1. 程式人生 > >python 查詢模組的檔案路徑

python 查詢模組的檔案路徑

有時候想知道import的模組的檔案路徑,看看指令碼,可以通過以下方式來檢視:

Python 2.6.6 (r266:84292, Jul 23 2015, 15:22:56) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-11)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import identmodule
>>> print identmodule.__file__
/usr/lib/python2.6/site-packages/identmodule/__init__.pyc

通過模組的__file__屬性來確定,這時候進入/usr/lib/python2.6/site-packages/identmodule/ 目錄就可以檢視指令碼了