Skip to content

Instantly share code, notes, and snippets.

@urschrei
Created June 12, 2011 21:58
Show Gist options
  • Save urschrei/1022039 to your computer and use it in GitHub Desktop.
Save urschrei/1022039 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
def fibo():
"""
yield the Fibonacci sequence
"""
a, b = 0, 1
while True:
yield a
a, b = b, a + b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment