def a(x, y): result = x + y*2 return result b = a(1,2) c = a(2,3) print(b) # 5 print(c) # 8. 當函式執行的過程中遇到return 時,就會「中止函式」並將結果回傳 ...
確定! 回上一頁