# -*- coding: utf-8 -*-
from functools import reduce
def fn(x, y):
return x * y
def prod(L):
if len(L)<1
python-reduce函数(list内元素相乘)
最新推荐文章于 2022-12-01 14:38:27 发布
本文介绍Python的reduce函数,通过实例展示如何使用它来计算一个list中所有元素的乘积,深入理解reduce的工作原理。
摘要由CSDN通过智能技术生成