python 递归 2016-11-29 [TOC] 求阶乘def jiecheng(n): if n ==1: return 1 return n * jiecheng( n - 1)In [15]: jiecheng(2)Out[15]: 2 最后更新时间:2023-12-11 15:18:57 http://zhourudong.cn/2016/11/29/14-python-递归/ 赏 Prev python集合 Next python modules