def max(num1, num2): return num1 if num1 > num2 else num2 ... return 傳回值,或者使用了 return 結束函式但沒有指定傳回值,預設會傳回 None 。
確定! 回上一頁