Python隨筆之文檔字串(DocStrings)

巴扎黑
發布: 2016-12-03 11:29:40
原創
1228 人瀏覽過

在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__
登入後複製


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板