猿问

recude 和prod 有什么关系

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?

风月v
浏览 1814回答 1
1回答

angie

大哥,我读了3遍,实在没有弄懂你想表达什么意思
随时随地看视频慕课网APP

相关分类

Python
我要回答