def plus(a, b, c=None): res = a + b + (c if c else 0) return res. 預設參數的用處通常是實作函式重載用的,可以使一個函式在接受引數時更有彈性, ...
確定! 回上一頁