查看python模塊在什么位置的方法:
若要獲取模塊的文件名為filename.py,在cmd中輸入下面的代碼即可獲取指定模塊的路徑:
>>importos
os.path.abspath('.\\filename.py')#獲得你要導(dǎo)入的模塊的路徑
'C:\\Users\\14469\\Desktop\\untitled\\filename.py'
復(fù)制剛才的路徑,然后加到sys.path即可導(dǎo)入模塊:
importsys
sys.path.append('C:\\Users\\14469\\Desktop\\untitled\\filename.py')
以上內(nèi)容為大家介紹了怎么查看python模塊在什么位置,希望對(duì)大家有所幫助,如果想要了解更多Python相關(guān)知識(shí),請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。