Skip to content

Instantly share code, notes, and snippets.

@mengzhuo
Created May 23, 2014 02:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mengzhuo/01fb4460dfec4fb1cb56 to your computer and use it in GitHub Desktop.
Save mengzhuo/01fb4460dfec4fb1cb56 to your computer and use it in GitHub Desktop.
Fib generator
def fib():
x, y = 0,1
while True:
yield x
x, y = y,x+y
fibgen=fib()
print [fibgen.next() for x in xrange(40)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment