first528 发表于 2020-11-3 09:31

python如何查找内置库函数、外部库函数的具体使用方法?

python如何查找内置库函数、外部库函数的具体使用方法?
菜鸟一枚,刚开始看python,一头雾水!

影子无爱 发表于 2020-11-3 09:55

https://docs.python.org/zh-cn/3/library/

gongsui 发表于 2020-11-3 10:03

查询库帮助,在import库之后,输入help(库名称),如:help(turtle)
查询某函数xx的方法 help(turtle.xx),例如help(turtle.home)

zfzhhh 发表于 2020-11-3 10:06

w3c
https://www.w3cschool.cn/python/python-continue-statement.html

senooo 发表于 2020-11-3 10:27

cookbook

supnet 发表于 2020-11-3 11:16

给二楼点赞

first528 发表于 2020-11-3 17:43

感谢楼上各位!

或跃在渊09 发表于 2020-11-3 19:20

查看已经安装的库命令:pip list
搜索想要的库:https://pypi.org/
页: [1]
查看完整版本: python如何查找内置库函数、外部库函数的具体使用方法?