小知识点
Posted nxrs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小知识点相关的知识,希望对你有一定的参考价值。
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.
以上是关于小知识点的主要内容,如果未能解决你的问题,请参考以下文章
Flutterflutter doctor 报错Android license status unknown. Run `flutter doctor --android-licenses‘(代码片段