python求积函数是什么 python求积的函数

主机教程 建站分享 2年前 (2022-12-06) 167次浏览

文章摘要:python求积函数是什么 python求积的函数

python中使用reduce函数求积,具体方法如下: reduce():reduce()函数的作用是对参数序 […]

python中使用reduce函数求积,具体方法如下:

reduce():reduce()函数的作用是对参数序列中元素进行累积。

reduce()函数语法:

reduce(function, iterable[, initializer])

参数:

function:函数,有两个参数。

iterable:可迭代对象。

initializer:初始参数。

reduce()函数使用方法:

from functools import reduce

def prod(x,y):

return x * y

L = reduce(prod,[3,5,7,9])

print(L)

输出结果为:

945


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python求积函数是什么 python求积的函数
文章链接:http://www.7966.org/post/15515.html
转载请注明出处

喜欢 (0)