python中实现阶乘函数 计算n的阶乘:使用递归思想` 利用if-else条件判断&调用自身 ##计算n的阶乘:使用递归思想 def factorial(n): if n == 1: return 1 return n * factorial(n-1) print(factorial(5))