码迷,mamicode.com
首页 > 编程语言 > 详细

python3学习之递归函数

时间:2017-05-12 22:10:37      阅读:127      评论:0      收藏:0      [点我收藏+]

标签: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学习之递归函数

标签:python

原文地址:http://lejie.blog.51cto.com/3080804/1925016

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!