def sum(*numbers): total = 0 for number in numbers: total += number return total print(sum(1, 2)) # 顯示3 print(sum(1, 2, ...
確定! 回上一頁