python學習之函數

##########函數############ 1.函數定義函數 • def關鍵字,依次寫出函數名、括號、括號中的參數和冒號 : • 在縮進塊中編寫函數體,函數的返回值用 return 語句返回。 函數在執行過程中一旦遇到reture,函數就執行完畢,並將結果返回,函數執行過程中沒有遇到return,返回值None。 def func(): pass return def hello():   
相關文章
相關標籤/搜索