pythonsum函数怎么用
时间: 2023-07-08 09:04:16 浏览: 119
对python中矩阵相加函数sum()的使用详解
5星 · 资源好评率100%
Python中没有内置的`sum()`函数,但是可以通过以下方式实现求和功能:
1. 使用for循环遍历列表并将元素相加:
```python
lst = [1, 2, 3, 4, 5]
total = 0
for num in lst:
total += num
print(total) # 输出 15
```
2. 使用`sum()`函数对列表进行求和:
```python
lst = [1, 2, 3, 4, 5]
total = sum(lst)
print(total) # 输出 15
```
`sum()`函数可以接受一个可迭代对象作为参数,并返回其元素的总和。除了列表外,它还可以用于元组、集合等可迭代对象。
阅读全文