Skip to content

Instantly share code, notes, and snippets.

@brantfaircloth
Created January 18, 2016 20:17
Show Gist options
  • Save brantfaircloth/04f6ec1924ea71084e09 to your computer and use it in GitHub Desktop.
Save brantfaircloth/04f6ec1924ea71084e09 to your computer and use it in GitHub Desktop.
fibo function
def fib(n): # write Fibonacci series up to n
a, b = 0, 1
while b < n:
print b,
a, b = b, a+b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment