Python学习笔记#函数中使用文档,让你的函数更容易理解

Posted Lirh_china

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习笔记#函数中使用文档,让你的函数更容易理解相关的知识,希望对你有一定的参考价值。

 

>>> def intadd(a,b):
this is a test of the doc of function
return a+b

>>> intadd(2,3)
5
>>> intadd.__doc__
this is a test of the doc of function
>>>

 

以上是关于Python学习笔记#函数中使用文档,让你的函数更容易理解的主要内容,如果未能解决你的问题,请参考以下文章

python中模块,函数初识

Python学习笔记-常用模块

Python学习笔记——测试代码

怎样正确使用函数式接口@FunctionalInterface,让你的代码更优雅!

老男孩Python 课堂笔记_Day2

python学习笔记6.抽象