首頁  >  文章  >  後端開發  >  Python隨筆之文檔字串(DocStrings)

Python隨筆之文檔字串(DocStrings)

巴扎黑
巴扎黑原創
2016-12-03 11:29:401231瀏覽

在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__


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn