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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。