1.生成临时网址方式(推荐) dos窗口输入命令:python -m pydoc -p 0,本机会随机生成一个端口号(也可以指定端口号,注意端口冲突),输入b直接打开,或者复制地址浏览器中打开查看。 ctrl+f 要查询的模块名。 2.通过内置函数help()+dir() help(): 查询包或包模块下变量或函数的文档信息,参考 https://www.python51.com/jc/74498.html dir():列出包模块下所有的变量和函数,参考 http://www.coolpython.net/method_topic/builtin-func/dir.html 例如想知道re模块下有哪些变量和函数,可以: import re print(dir(re)) 想具体查看“compile”这个函数的文档说明: import re print(help(re)) print(help(re.compile)) help(模块名.函数名) |
GMT+8, 2024-11-21 18:50 , Processed in 0.143547 second(s), 19 queries , Gzip On.
Powered by Discuz! X3.5
© 2001-2024 Discuz! Team.