Python定义计算N的阶乘的函数

定义计算N的阶乘的函数

1)使用循环计算阶乘

def frac(n):
    r = 1
    if n<=1:
        if n==0 or n==1:
            return 1
        else:
            print('n 不能小于0')
    else:
        for i in range(1, n+1):
            r *= i
        return r

print(frac(5))     
print(frac(6))
print(frac(7))

120
720
5040

2)使用递归计算阶乘

def frac(n):
    if n<=1:
        if n==0 or n==1:
            return 1
        else:
            print('n 不能小于0')
    else:
        return n * frac(n-1)
    
print(frac(5))
print(frac(6))
print(frac(7))

120
720
5040

3)调用reduce函数计算阶乘

说明:Python 在 functools 模块提供了 reduce() 函数,该函数使用指定函数对序列对象进行累计。

查看函数信息:

import functools
print(help(functools.reduce))
Help on built-in function reduce in module _functools:

reduce(...)
    reduce(function, sequence[, initial]) -> value
    
    Apply a function of two arguments cumulatively to the items of a sequence,
    from left to right, so as to reduce the sequence to a single value.
    For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates
    ((((1+2)+3)+4)+5).  If initial is present, it is placed before the items
    of the sequence in the calculation, and serves as a default when the
    sequence is empty.

在这里插入图片描述

import functools

def fn(x, y):
    return x*y

def frac(n):
    if n<=1:
        if n==0 or n==1:
            return 1
        else:
            print('n 不能小于0')
    else:
        return functools.reduce(fn, range(1, n+1))
    
print(frac(5))
print(frac(6))
print(frac(7))

120
720
5040

# 使用 lambda 简写
import functools

def frac(n):
    if n<=1:
        if n==0 or n==1:
            return 1
        else:
            print('n 不能小于0')
    else:
        return functools.reduce(lambda x, y: x*y, range(1, n+1))
    
print(frac(5))
print(frac(6))
print(frac(7))

120
720
5040

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值