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

递归和for循环

时间:2015-10-24 00:09:20      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:

# -*- coding: utf-8 -*-
#python 27
#xiaodeng
#http://www.cnblogs.com/BeginMan/p/3223356.html
#递归2



非递归方式
sum=0
#没有sum=0,会出现如下错误提示
‘‘‘
Traceback (most recent call last):
  File "C:\Users\Administrator\Desktop\new.py", line 12, in <module>
    sum+=obj
TypeError: unsupported operand type(s) for +=: ‘builtin_function_or_method‘ and ‘int‘
‘‘‘
for obj in range(5):
    sum+=obj
    
print sum        #10


#递归方式
def foo(n):
    if n>0:
        return n+foo(n-1)
    if n<=0:
        return 0

print foo(4)

 

递归和for循环

标签:

原文地址:http://www.cnblogs.com/dengyg200891/p/4905886.html

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