首页 > 编程语言 > 详细

python 3 迭代器与生成器

时间:2016-10-20 00:04:28      阅读:291      评论:0      收藏:0      [点我收藏+]
import sys

def fibonacci(n):
    a, b, counter = 0, 1, 0
    while True:
        if (counter >= n):
            return
        a, b = b, a+b
        yield a
        counter += 1
        
f = fibonacci(1)

while True:
    try:
        print (next(f), end=" ")
    except StopIteration:
        sys.exit()

 当yield 返回迭代器之后,后面再return 非迭代器的值的话, return返回的值使用迭代器(for a in f)不能找到,next会报类型错误。

python 3 迭代器与生成器

原文:http://www.cnblogs.com/secoolar/p/5975371.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!