0
1
CCrypticSai-08
0 Comments
arr = [10, 89, 9, 56, 4, 80, 8] Sum = 0 for i in range(len(arr)): Sum = Sum + arr[i] print (Sum)