发布网友 发布时间:2022-04-23 00:12
共4个回答
热心网友 时间:2022-05-03 10:16
1. 采用循环的方法求解
def factorial(N):
total = 1
for i in range(1, N + 1):
total = total * i
return total
2. 采用函数式的方法求解
from functools import rece
from operator import mul
def factorial(N):
return rece(mul, range(1, N + 1))
热心网友 时间:2022-05-03 11:34
#encoding=utf-8热心网友 时间:2022-05-03 13:09
我也不懂后整个儿的热心网友 时间:2022-05-03 15:00
x = 1