python没有自己算阶乘的函数吗

发布网友 发布时间:2022-04-23 05:12

我来回答

4个回答

热心网友 时间:2022-04-07 12:36

有阶乘函数:
improt numpy
print numpy.math.factorial(3)

python 自带的标准库也有阶乘函数
import math
print math.factorial(3)

热心网友 时间:2022-04-07 13:54

可以自己写 。

fac = lambda n:rece(lambda x,y:x*y,range(1,n+1)

import math

math.factorial(x)

有阶乘函数:   

improt numpy

print numpy.math.factorial(3)

python 自带的标准库也有阶乘函数   

import math

print math.factorial(3)

热心网友 时间:2022-04-07 15:29

def f(n):
answer=1
while n>1:
answer=answer*n
n=n-1
return answer

热心网友 时间:2022-04-07 17:20

并没有,需要自己写函数实现。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com