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学习笔记#函数中使用文档,让你的函数更容易理解的主要内容,如果未能解决你的问题,请参考以下文章