怎么查看python模块在什么位置

python

查看python模块" title="python模块">python模块在什么位置的方法:

若要获取模块的文件名为filename.py,在cmd中输入下面的代码即可获取指定模块的路径:

import os

os.path.abspath('.filename.py')   #获得你要导入的模块的路径

'C:Users14469Desktopuntitledfilename.py'

复制刚才的路径,然后加到sys.path即可导入模块:

import sys

sys.path.append('C:Users14469Desktopuntitledfilename.py'  )

更多Python知识请关注云海天Python教程栏目。

以上是 怎么查看python模块在什么位置 的全部内容, 来源链接: utcz.com/z/527009.html

回到顶部