python:用 reduce 函数计算阶乘

发布时间:2024年01月01日

编写?compute_factorial.py 如下

# -*- coding: utf-8 -*-
""" 计算阶乘 factorial """
import sys
from functools import reduce
#help(reduce)

if len(sys.argv) ==2:
    n = int(sys.argv[1])
else:
    print('usage: python compute_factorial.py n ')
    sys.exit(1)

#n = 30
factorial = reduce(lambda x,y: x*y, range(1,n+1))
print(f"{n}!= {factorial}")

运行 python?compute_factorial.py 30

请参阅:Python 中reduce()与lambda函数详解

文章来源:https://blog.csdn.net/belldeep/article/details/135323151
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。