Python 的 sum(~)
方法从左到右添加可迭代对象的项目并返回总数。
参数
1. iterable
| iterable
要添加其项目的可迭代对象。可迭代的元素应该是数字。
2. start
| number
| optional
将此值添加到总数中。默认值为 0。
返回值
返回所提供的可迭代项的总和加上起始位置(如果适用)。
例子
基本用法
返回列表 numbers
中元素的总和:
numbers = [12, 3, 6, 4, 8]
sum(numbers)
33
启动参数
要在对 numbers
列表求和时指定 10
的开头:
numbers = [12, 3, 6, 4, 8]
sum(numbers,10)
43
请注意,10
被添加到 numbers
(33) 中的元素之和,从而得到返回值 43
。
相关用法
- Python NumPy sum方法用法及代码示例
- Python sum()用法及代码示例
- Python super()用法及代码示例
- Python Tableau subscriptions.delete用法及代码示例
- Python subprocess.run用法及代码示例
- Python subprocess.Popen用法及代码示例
- Python Tableau subscription.get_by_id用法及代码示例
- Python subprocess.check_output用法及代码示例
- Python subprocess.getstatusoutput用法及代码示例
- Python Tableau subscription.update用法及代码示例
- Python subprocess.Popen.communicate用法及代码示例
- Python super用法及代码示例
- Python Tableau subscription.create用法及代码示例
- Python NumPy subtract方法用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python NumPy squeeze方法用法及代码示例
- Python scipy.ndimage.binary_opening用法及代码示例
- Python scipy.signal.windows.tukey用法及代码示例
- Python scipy.stats.mood用法及代码示例
- Python str.isidentifier用法及代码示例
- Python sklearn.metrics.fbeta_score用法及代码示例
- Python scipy.fft.ihfftn用法及代码示例
- Python scipy.stats.normaltest用法及代码示例
- Python scipy.ndimage.convolve1d用法及代码示例
- Python scipy.stats.arcsine用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python | sum method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。