python中可以使用內建函數`sum()`對陣列求和。此函數接受一個可迭代物件作為參數,並傳回其元素的和。 範例:```Pythonarr = [1, 2, 3, 4, 5]total = sum(arr)print (total) # 輸出:15```