第17月第28天 python yield

Posted lianhuaren

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第17月第28天 python yield相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

第17月第7天 iOS 数组越界,防Crash处理

第10月第28天 touchesBegan

第28月第11天 vim -b

第8月第22天 python scrapy

第8月第12天 python json.dumps

第4月第20天 python re