python的阶乘 python阶乘函数 python求1到20阶乘的和?Def factorial(n):if n==1:return 1else:return n*factorial(n-1)Def sum... 2021-03-17 2532次浏览