-
-
Save bekzat-shayakhmet/fee58658bb7ae2abe1b6a23adf14b58b to your computer and use it in GitHub Desktop.
Python - Fibonacci Iterator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Fib: | |
def __init__(self, max): | |
self.max = max | |
def __iter__(self): | |
self.a = 0 | |
self.b = 1 | |
return self | |
def __next__(self): | |
fib = self.a | |
if fib > self.max: | |
raise StopIteration | |
self.a, self.b = self.b, self.a + self.b | |
return fib |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment