我可以找到 python 个模块吗?
Can I find python modules?
我在 Python33/Lib 中找到了所有其他模块,但找不到 math 。他们失踪了还是什么?由于某些原因,我需要查看开发人员编写的代码(即使它是用 c 编写的)。
math
,和很多核心模块一样,是内置的。您将不得不浏览 Python 源代码。
https://github.com/python/cpython/tree/master/Modules
我在 Python33/Lib 中找到了所有其他模块,但找不到 math 。他们失踪了还是什么?由于某些原因,我需要查看开发人员编写的代码(即使它是用 c 编写的)。
math
,和很多核心模块一样,是内置的。您将不得不浏览 Python 源代码。
https://github.com/python/cpython/tree/master/Modules