建立函數
記錄函數,在函數的開頭寫下字串,它就會作為函數的一部分進行存儲,這稱為文檔字串,如
def square(x): 'Caculates the square of the number x.'
return x*x
>>> square.__doc__
'Caculates the square of the number x.'
help -- 在互動式解釋器中使用會得到關於函數包括它的文件字串的訊息,如
>>> help(square)
Help on function square in module __main__:
square(x)
Caculates the square of the number x.它們回傳值的時候,它們就會回傳None。
參數魔法
以上就是《python基礎教學》筆記之抽象的內容,更多相關內容請關注PHP中文網(www.php.cn)!