编写一个prod()函数,可以接受一个list并利用reduce()求积。fromfunctoolsimportreducedefprod(x,y):returnx
编写一个prod()函数,可以接受一个list并利用reduce()求积。
from functools import reduce
def prod(x,y):
return x * y
L = reduce(prod,[3,5,7,9])
print(L)
打印结果如下:
以上这篇使用Python中的reduce()函数求积的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
Python reduce 求积