python help()
函数用于返回对象的详细信息。它可以帮助我们了解模块、类型、对象、方法、属性的详细信息。
语法
语法如下:help([object])
参数
- object: 指定要获取详细信息的对象。
返回值
返回详细信息。
程序示例
#!/usr/bin/python
# coding=utf-8
print(help()) #打印pyhon的信息
print(help('collections')) #打印集合的信息
print(help(print)) # 打印print方法的信息
print(help(list)) # 打印list结构信息
程序运行结果:
因为返回结果太长这里就不再显示了。