码迷,mamicode.com
首页 > 其他好文 > 详细

向前引用变量

时间:2016-12-16 19:15:54      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:cal   return   turn   int   print   pre   引用   blog   python   

def calc(n):
    print(n)
    if int(n/2)== 0:
        return n
    res = calc(int(n/2))
    return res
calc(10)

结果:
10
5
2
1

  

向前引用变量

标签:cal   return   turn   int   print   pre   引用   blog   python   

原文地址:http://www.cnblogs.com/huangjinshan/p/6187914.html

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