python查看库函数

以前查看python库的调用的时候,经常是百度,运气好的话能找到库的官网,但是每个库的查看方式还不一样。今天偶然发现python自己提供了本地查看的工具

命令行执行

python -m pydoc -p 4567

-p后面是端口参数

python -m pydoc -p 4567
Server ready at http://localhost:4567/
Server commands: [b]rowser, [q]uit
server>

浏览器打开链接

localhost:4567

就能看到本地python的库对应的文档了

python查看库函数_第1张图片

你可能感兴趣的:(python,python)