python强大的模块标准库如何搜索?

 

python有强大的标准库模块可以调用,那么怎么去找现成的模块呢?

1、官网

file:///Library/Frameworks/Python.framework/Versions/3.8/Resources/English.lproj/Documentation/index.html

模块在Library Reference里面:

file:///Library/Frameworks/Python.framework/Versions/3.8/Resources/English.lproj/Documentation/library/index.html

 

2、pypi共建社区

这玩意儿就是大家可以分享自己的标准库,也可以随时检索你想要的模块资源,就是一个模块的大词典!

网址:https://pypi.org

 

 

PEP:

(python enhancement proposals)python的增强建议书,就是规定了python的各项技术规格。

每个规格都有一个固定的编号,编号规则在这里:

https://www.python.org/dev/peps/

 

 

如何在IDE中快速查看该模块的文档?

[例如timeit模块]

>>> import timeit
>>> timeit.__doc__

或者用help:
>>>help(timeit)

你可能感兴趣的:(python)