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

分别用Python的迭代器和生成器实现斐波那契数列

时间:2020-03-27 12:24:15      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:object   数列   top   sel   stop   self   ext   iter   __init__   

迭代器实现:

class Fib(object):
    def __init__(self, stop):
            self.stop = stop
            self.current = 0
            self.num1 = self.num2 = 1

    def __iter__(self):
            return self

    def __next__(self):
            x = self.num1
            if self.current < self.stop:
                    self.current += 1
                    self.num1, self.num2 = self.num2, self.num1 + self.num2
                    return x
            raise StopIteration

生成器实现:

def Fib(stop):

    current = 0
    num1 = num2 = 1
    while current < stop:

        yield num1
        num1, num2 = num2, num1 + num2
        current += 1

分别用Python的迭代器和生成器实现斐波那契数列

标签:object   数列   top   sel   stop   self   ext   iter   __init__   

原文地址:https://blog.51cto.com/13560219/2482320

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