首页 > 编程语言 > 详细

[Python]reduce function & lambda function & factorial

时间:2020-06-06 21:29:23      阅读:33      评论:0      收藏:0      [点我收藏+]

 

from functools import reduce
i = int(input("input a number 1-10: "))
result = reduce(lambda a, b: a*b, [item for item in range(1,i+1)])
print(ffactorial of {i+1} is {result})

 

运行结果

input a number 1-10: 5
factorial of 6 is 120

 

[Python]reduce function & lambda function & factorial

原文:https://www.cnblogs.com/profesor/p/13056394.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!