python中求阶乘的前n项和 python求前n项和的程序 python求1到20阶乘的和?def factorial(n):如果n==1:返回1否则:返回n*factorial(n-1)def sumfactrial(m):如... 2021-03-13 2364次浏览