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

生成器

时间:2018-09-13 17:30:21      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:value   break   int   exception   class   except   exce   color   bsp   

def fib(num):
    a, b = 0, 1
    index = 0
    while index < num:
        yield a
        a, b = b, a+b
        index += 1
    return ok...

f = fib(100)

while True:
    try:
        print(next(f))
    except Exception as e:
        print(e.value)
        break
        
# for num in f:
#     print(num)

 

def fib(num):
    a, b = 0, 1
    index = 0
    while index < num:
        temp = yield a
        print(temp:,temp)
        a, b = b, a+b
        index += 1
f = fib(20)
ret = next(f)
print(ret)
ret2 = f.send(test)
print(ret2)

 

生成器

标签:value   break   int   exception   class   except   exce   color   bsp   

原文地址:https://www.cnblogs.com/kuraki/p/9641568.html

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