码迷,mamicode.com
首页 > 编程语言 > 详细

[Python]reduce function & lambda function & factorial

时间:2020-06-06 21:41:28      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:cti   amp   for   lambda   reduce   too   res   factor   col   

 

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

标签:cti   amp   for   lambda   reduce   too   res   factor   col   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!