python数组list的每一项相加
时间: 2024-02-23 09:54:15 浏览: 150
python 实现数组list 添加、修改、删除的方法
可以使用循环遍历列表的每一项,并将它们相加。下面是一个示例代码:
```python
numList = [1, 2, 3, 4, 5]
sum = 0
for num in numList:
sum += num
print("Sum of list items:", sum) # 输出:Sum of list items: 15
```
在上面的代码中,我们首先定义了一个空变量`sum`,用于存储列表项的总和。然后,我们使用`for`循环遍历列表`numList`中的每一项,并将它们依次加到`sum`变量中。最后,我们打印出`sum`的值,即列表项的总和。
阅读全文