我們希望 my_sum() 函數可以計算輸入list 中的數字加總。 def my_sum(x): '計算輸入list 中的數字加總' summation = 0 for i in x: summation += i return summation ...
確定! 回上一頁