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

Python_生成器

时间:2018-03-21 15:05:23      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:方法   ati   cep   记录   位置   gen   print   blog   一个   

1.生成器

只有在调用时才生成相应的数据,只记录当前位置,只有一个__next__()方法.

def fib(max):
    n,a,b = 0,0,1
    while n < max:
        #print(b)
        yield b
        a,b = b,a + b
        n = n + 1
    return ‘done‘

f = fib(6)
while True:
    try:
        x = next(f)
        print(‘f:‘,x)
    except StopIteration as e:
        print(‘Generator return value:‘,e.value)
        break

  

Python_生成器

标签:方法   ati   cep   记录   位置   gen   print   blog   一个   

原文地址:https://www.cnblogs.com/soapolddaddy/p/8616795.html

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