代码改变世界

[python]文档字符串

2015-11-23 16:44  sophia194910  阅读(157)  评论(0编辑  收藏  举报

文档字符串可以在运行时访问,也可以用来自动生成文档。

输入:

def foo():
    print "This is a doc string"
    return True

foo()

运行结果:

This is a doc string