可以使用循环来累加列表中的数字。有两种常见的方法可以实现这个功能:
numbers = [1, 2, 3, 4, 5]
total = 0
for num in numbers:
total += num
print(total) # 输出15
numbers = [1, 2, 3, 4, 5]
total = sum(numbers) # 使用sum()函数对列表中的数字进行累加
print(total) # 输出15
两种方法都可以得到正确的累加结果,你可以根据自己的需求选择合适的方法。