iT邦幫忙

0

[Day14]Python學習(八)

  • 分享至 

  • xImage
  •  

參考資料
https://www.youtube.com/watch?v=OOJmhezLd4o&list=PL-g0fdC5RMboYEyt6QS2iLb_1m7QcgfHk&index=10
函式參數詳解

基本語法
def函式名稱(參數名稱=預設資料):
函式內部的程式碼
名稱對應
def函式名稱(名稱1,名稱2):
函式內部的程式碼
#呼叫函式,以參數名稱對應資料
函式名稱(名稱2=3,名稱1=5)
無限參數
def函式名稱(*無限參數):
無限參數以Tuple資料形態處理
函式內部的程式碼
#呼叫函式,可傳入無限數量的參數
函式名稱(資料1,資料2,資料3)
https://ithelp.ithome.com.tw/upload/images/20221024/20153234SEaf10RYJT.jpg
預設函式裏頭的參數值,呼叫函式時若沒有給其他數值,就會用預設值
https://ithelp.ithome.com.tw/upload/images/20221024/20153234LLnAOA0RUC.jpg
能用名稱對應資料,不然都是照著順序給予資料
https://ithelp.ithome.com.tw/upload/images/20221024/201532340GZfp7g60S.jpg
呼叫函式時,可傳入無限數量的資料
https://ithelp.ithome.com.tw/upload/images/20221024/20153234ZWosmhLapS.jpg
利用無限數量的參數輸入,可以像上圖一樣輸入多個數字,計算平均值


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言