python编写计算阶乘的函数 python求整数n阶乘 python语音写函数计算1到100的阶乘之和?def factorial(n):if nreturn 1else:return n*factorial(n-1)the... 2021-03-11 2899次浏览