在python中查询函数帮助的方法
1.查看模块下的所有函数
import math
dir(math)
2.查看模块下特定函数的信息
import math
dir(math.sin)
3.查询模块或模块下函数的使用帮助信息
import math
math?
math.cos?
4.查询模块或函数帮助信息
import requests
help(requests)
import numpy
help(numpy.arange)
5.查询模块使用帮助信息
import math
print(math.__doc__)
6.查看模块下特定函数使用帮助信息
import math
print(math.acos.__doc__)