Skip to content

Instantly share code, notes, and snippets.

@ssophwang
Created June 1, 2015 00:39
Show Gist options
  • Save ssophwang/cbf5bd9db7b5537e66d1 to your computer and use it in GitHub Desktop.
Save ssophwang/cbf5bd9db7b5537e66d1 to your computer and use it in GitHub Desktop.
fibonacci.py
# makes Fibonacci numbers using python
def fib(s):
a = 0
b = 1
for i in range(s+1):
print a
old_a = a
a = b
b = old_a + b
fib(200)
@SpaceVoyager
Copy link

Well done, flowerspower!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment