python1到20的阶乘 python计算n的阶乘 python求1到20阶乘的和?def factorial(n):如果n==1:返回1否则:返回n*factorial(n-1)def sumfactrial(m):如... 2021-03-11 2296次浏览