标签:python
##递归函数 #自己调用自己 def t(a): if a == 1: return 1 return a + t(a-1) b = t(7) print(b) #计算1+2+3+4+5+6+7 的和
python3学习之递归函数
原文地址:http://lejie.blog.51cto.com/3080804/1925016