python help

1.通用帮助函数help()

进入help帮助文档界面,根据屏幕提示可以继续键入相应关键词进行查询,继续键入modules可以列出当前所有安装的模块:

2.模块帮助查询

查看.py结尾的普通模块help(module_name)

import math

help(math)

3.查看内建模块sys.bultin_modulenames

import sys

sys.builtin_module_names

4.查询函数信息

查看模块下所有函数dir(module_name)

5.查看模块下特定函数信息help(module_name.func_name)

如查看math下的sin()函数

help(math.sin)

6.查看函数信息的另一种方法print(func_name.__doc__)

print(print__doc__)

你可能感兴趣的:(python help)