标签:
结果:1597 #!/sur/bin/env python # -*- coding:utf-8 -*- __author__ = ‘ganzl‘ def func(arg1,arg2,times): times += 1 count = arg1+arg2 if count>1000: return count #ret = func(arg2,count,times) return func(arg2,count,times) #print ret,times-1 ret = func(0,1,1) print ret
标签:
原文地址:http://www.cnblogs.com/shoug/p/5151659.html