python随笔之文档字符串(docstrings)

在python中有一个奇妙的特性,文档字符串,又称为docstrings。用它可以为我们的模块,类,函数添加说明性的文字,使程序易读易懂,更重要的是可以通过python自带的标准方法将这些描述性文字信息输出。下面举例说明。

”’this is my own module
date:2011-09-07
author:chris mao
this is description information”’
class testclass:
”’this is testclass’ docstrings”’
def func1():
”’this is func1’s docstrings”’
pass
def func2():
”’this is func2”’
print “this is func2”
print func2.__doc__

Posted in 未分类

发表评论