当前位置:主页 > 软件编程 > Python代码 >
时间:2020-12-30 14:28:15 | 栏目:Python代码 | 点击:次
如下所示:
# 求一个列表中所有元素的乘积 from functools import reduce lt = [1,2,3,4,5] ln = reduce(lambda x,y:x * y,lt) print(ln)