Python内置了求和函数sum(),但没有求积的函数,请利用recude()来求积: 输入:[2, 4, 5, 7, 12] 输出:2*4*5*7*12的结果def prod(x, y):
return x * y
print reduce(prod, [2, 4, 5, 7, 12])为什么使用prod可以 而不是使用recude?
添加回答
举报
0/150
提交
取消