本文主要是介绍Python3 笔记:help()查看函数的用法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一些不常用的函数或是模块的用法记不清了怎么办?
Python的内置函数help()可以查看函数或模块用途的详细说明。
操作方法很简单,直接在help()括号内填写参数,然后运行就可以看到结果了。
举例:
help(input) # 查询input()函数的用法
"""
运行结果:
Help on built-in function input in module builtins:input(prompt=None, /)Read a string from standard input. The trailing newline is stripped.The prompt string, if given, is printed to standard output without atrailing newline before reading input.If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError.On *nix systems, readline is used if available.
"""help(len) # 查询len()函数的用法
"""
运行结果:
Help on built-in function len in module builtins:len(obj, /)Return the number of items in a container.
"""
同样可以查询自定义函数的用法。举例:
# 定义一个informa()函数,包含Name,Age,ID三个参数
def informa(Name,Age,ID):print('Name: ',Name)print('Age: ',Age)print('ID: ',ID)
# 调用已经定义好的informa()函数
Name = 'Mark'
Age = 30
ID = 12345678
informa(Name,Age,ID)
"""
运行结果:
Name: Mark
Age: 30
ID: 12345678
"""
help(informa) # 查询自定义函数informa()的用法
"""
运行结果:
Help on function informa in module __main__:informa(Name, Age, ID)# 定义一个informa()函数,包含Name,Age,ID三个参数
"""
Python3 笔记:Python3 在线工具、Python在线编程-CSDN博客
这篇关于Python3 笔记:help()查看函数的用法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!