Created
June 1, 2015 00:39
-
-
Save ssophwang/cbf5bd9db7b5537e66d1 to your computer and use it in GitHub Desktop.
fibonacci.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well done, flowerspower!