我一直在試圖找到一個模塊的位置,但我不能搜查蟒蛇文件夾,但仍無法找到它,但我知道它的存在Python模塊的位置
>>> import math
>>> math.__path__
Traceback (most recent call last):
File "<pyshell#13>", line 1, in <module>
math.__path__
AttributeError: 'module' object has no attribute '__path__'
>>> math.__file__
Traceback (most recent call last):
File "<pyshell#14>", line 1, in <module>
math.__file__
AttributeError: 'module' object has no attribute '__file__'
歡迎來到StackOverflow!我通過突出顯示代碼並敲擊代碼['{}']按鈕來修改格式。 – Johnsyweb
謝謝你,你是怎麼做到的?點擊代碼按鈕只告訴我四倍空間來啓動代碼塊:/也許我只是錯過了一些東西,下一個問題我發佈我會看看它。 – Arcticfoxx
我認爲數學是一個內建模塊。 – bw1024