首页 > 编程语言 > 详细

python3-sum()函数

时间:2020-09-04 23:47:00      阅读:84      评论:0      收藏:0      [点我收藏+]

sum(iterable, start=0, /)

Return the sum of a ‘start‘ value (default: 0) plus an iterable of numbers

When the iterable is empty, return the start value.
This function is intended specifically for use with numeric values and may
reject non-numeric types.

返回一个“start”值(默认为0)加上一个可迭代的数字的和

当可迭代为空时,返回起始值。
此函数专门用于数值,可能会拒绝非数值类型。
 

square3 = [val for val in range(0,101)]

print(sum(square3))

>>=:5050
(求和函数sum=(n*(n+1))/2)

python3-sum()函数

原文:https://www.cnblogs.com/a001ai-es/p/13616630.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!