阅读背景:

python递归函数的优化

来源:互联网 
def fact(n):
if n == 1:
return 1
else:
return fact(n-1)*nreturn fact(n-1



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: