Skip to content

Instantly share code, notes, and snippets.

@Sangram92
Created February 2, 2016 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sangram92/35be22aaa36186f156ff to your computer and use it in GitHub Desktop.
Save Sangram92/35be22aaa36186f156ff to your computer and use it in GitHub Desktop.
count = input("How many times ")
fibonnaci = []
first = 0
second = 1
for i in range(count):
result = first + second
fibonnaci.append(result)
first = second
second = result
print fibonnaci
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment