Skip to content

Instantly share code, notes, and snippets.

@wzpan
Last active December 5, 2022 23:17
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wzpan/6112786 to your computer and use it in GitHub Desktop.
Save wzpan/6112786 to your computer and use it in GitHub Desktop.
Python - Fibonacci Iterator
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