def max(num1, num2): return num1 if num1 > num2 else num2. 定義函式時要使用 def 關鍵字, max 是函式名稱, num1 、 num2 是參數名稱,如果要傳 ...
確定! 回上一頁