码迷,mamicode.com
首页 > 其他好文 > 详细

小知识点

时间:2019-06-09 15:45:26      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:知识点   函数   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!