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

Python开发【第一篇】Python基础之函数递归

时间:2016-10-26 13:22:03      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:highlight   pytho   turn   color   python   python开发   基础   函数   int   

函数递归

递归的本质: 就是一个函数调用另外一个函数。

def d():
    return ‘123‘

def c():
    r = d()
    return r

def b():
    r = c()
    return r

def a():
    r = b()
    print(r)

a()

 

def func(n):
    n += 1
    if n >=4:
        return ‘end‘
    return func(n)
r = func(1)
print(r)

 

Python开发【第一篇】Python基础之函数递归

标签:highlight   pytho   turn   color   python   python开发   基础   函数   int   

原文地址:http://www.cnblogs.com/luchuangao/p/5999629.html

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