美文网首页
python help

python help

作者: 破九_学习日志 | 来源:发表于2018-10-04 19:08 被阅读0次

    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

          本文链接:https://www.haomeiwen.com/subject/wrwyoftx.html