我一直试图找到一个模块的位置,但我不能搜索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__'
答案 0 :(得分:5)
如果它没有__file__
属性,那么这意味着它可能内置在Python库本身(或其他一些可执行文件)中,并且不会在磁盘上独立存在。