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

第17月第28天 python yield

时间:2018-02-28 16:30:41      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:tps   com   nbsp   .com   color   ati   print   stop   www.   

1.

class Fab(object): 
 
   def __init__(self, max): 
       self.max = max 
       self.n, self.a, self.b = 0, 0, 1 
 
   def __iter__(self): 
       return self 
 
   def next(self): 
       if self.n < self.max: 
           r = self.b 
           self.a, self.b = self.b, self.a + self.b 
           self.n = self.n + 1 
           return r 
       raise StopIteration()
def fab(max): 
    n, a, b = 0, 0, 1 
    while n < max: 
        yield b 
        # print b 
        a, b = b, a + b 
        n = n + 1 

 

 

https://www.ibm.com/developerworks/cn/opensource/os-cn-python-yield/

第17月第28天 python yield

标签:tps   com   nbsp   .com   color   ati   print   stop   www.   

原文地址:https://www.cnblogs.com/javastart/p/8483808.html

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