标签:知识点 函数 ram class 最大 小知识点 pytho cti 函数注释
1.文档字符串(用于函数注释)使用help()函数可以查看注释内容
def func(a,b): """ 用于比较两个数的大小 :param a: :param b: :return: """ if a>b: print("最大:%d"%a) else: print("最大:%d"%b) func(5,10) help(func.__doc__) # 查看注释内容
# No Python documentation found for ‘用于比较两个数的大小\n :param a:\n :param b:\n :return:‘.
# Use help() to get the interactive help utility.
# Use help(str) for help on the str class.
标签:知识点 函数 ram class 最大 小知识点 pytho cti 函数注释
原文地址:https://www.cnblogs.com/nxrs/p/10993649.html