编写一个函数,接受list并用reduce求积
程序员文章站
2022-04-12 21:18:12
编写一个函数,接受list并用reduce求积。
from functools import reduce
def prod(L):
return reduce(lambda...
编写一个函数,接受list并用reduce求积。
from functools import reduce def prod(L): return reduce(lambda x,y:x * y,L) print('3 * 5 * 7 * 9 =', prod([3, 5, 7, 9])) if prod([3, 5, 7, 9]) == 945: print('测试成功!') else: print('测试失败!')
上一篇: DBCP数据源连接池实现原理分析
下一篇: C、C++动态数组实现