函数调用过程
函数文档注释
文档注释:DocString
写在程序文件开头位置时,是程序文件的DocString
写在函数开头位置时,是对函数功能的说明,是函数的DocString
格式:
"""
函数说明文档,DocString
"""
def show():
'''
这是show函数的函数说明文档
show 函数的作用是用来显示一个字符串
'''
print("hello world")
show()
help(show)
评论 (0)