Skip to content

Instantly share code, notes, and snippets.

@eddyxu
Created November 10, 2012 21:37
Show Gist options
  • Save eddyxu/4052614 to your computer and use it in GitHub Desktop.
Save eddyxu/4052614 to your computer and use it in GitHub Desktop.
Fibonacci sequence in python
f1 = 1
f2 = 1
while True:
f2, f1 = f1 + f2, f2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment