Python函数 help()
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python函数 help()相关的知识,希望对你有一定的参考价值。
**help()
功能:
help() 函数用于查看函数或模块用途的详细说明。object -- 对象;返回对象帮助信息。
语法:
help([object])
实例:
1 >>>help(‘sys‘) # 查看 sys 模块的帮助 2 ……显示帮助信息…… 3 4 >>>help(‘str‘) # 查看 str 数据类型的帮助 5 ……显示帮助信息…… 6 7 >>>a = [1,2,3] 8 >>>help(a) # 查看列表 list 帮助信息 9 ……显示帮助信息…… 10 11 >>>help(a.append) # 显示list的append方法的帮助 12 ……显示帮助信息……
以上是关于Python函数 help()的主要内容,如果未能解决你的问题,请参考以下文章
解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段