Python
Python开发
Python语言
Python查看模块函数,查看函数方法的详细信息
Python查看方法的详情
1.通用的帮助函数help()
使用help()函数来查看函数的帮助信息。
如:
1 importrequests2
3 help(requests)
会有类似如下输出:
2.查询函数信息
★查看模块下的所有函数:dir(module_name) #module_name是要查询的函数名
如:
1 importrequests2
3 dir(requests)
会有类似如下输出:
★查看模块下特定函数的信息
⑴help()方法。 help(module_name.func_name) #module_name 是模块名,func_name是模块内的函数名
如:
1 importrequests2
3 help(requests.get)
会有类似如下输出:
⑵__doc__方法。 print(module_name/func_name.__doc__) #__doc__前可以是模块名,也可以是细分到模块下的函数,两者显示不同的文档。如果是模块名,文档就是介绍模块的;如果是函数的,那就是介绍函数的。
如:
1 importrequests2
3 print(requests.__doc__) #显示模块文档信息
4 print(requests.get.__doc__) #显示requests模块下的get方法的文档信息
会有如下类似输出:
print(requests.__doc__)
print(requests.get.__doc__)
内容来源于网络,如有侵权请联系客服删除