Python中有兩種註釋方式,一種是前置#符號,另外一種是直接使用字符串""或"""。this
後者稱爲文檔字符串,除了帶有常規註釋的描述功能外,還能夠經過help及生成文檔的方法訪問到,而常規註釋沒法訪問。spa
下面使用help和__doc__兩種方法訪問文檔字符串,示例代碼以下:code
>>> def foo(x): #this is a function for fun return x*3 >>> foo("Hello ! ") 'Hello ! Hello ! Hello ! ' >>> def foo(x): "this is a function for fun" return x*3 >>> foo("Hi ! ") 'Hi ! Hi ! Hi ! ' >>> help(foo) Help on function foo in module __main__: foo(x) this is a function for fun >>> foo.__doc__ 'this is a function for fun' >>>