reduce的应用

请编写一个prod()函数,可以接受一个list并利用reduce()求积:

from functools import reduce
def prod(L):
    def ji(x, y):
        return x * y
    if(len(L)<=1):
        return L[0]
    else:
        return reduce(ji, L)
        
print('3 * 5 * 7 * 9 =', prod([3, 5, 7, 9]))
if prod([3, 5, 7, 9]) == 945:
    print('测试成功!')
else:
    print('测试失败!')

 

posted @ 2018-04-05 11:07  Horse-Ma  阅读(109)  评论(0编辑  收藏  举报