Skip to content

Instantly share code, notes, and snippets.

@chamix
Created November 1, 2014 12:50
Show Gist options
  • Save chamix/e14d126f6211fef07251 to your computer and use it in GitHub Desktop.
Save chamix/e14d126f6211fef07251 to your computer and use it in GitHub Desktop.
def fib(n):
a, b = 0, 1
while b < n:
print (b, end=', ')
a, b = b, a+b
print()
fib (2000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment