Skip to content

Instantly share code, notes, and snippets.

@supphawit
Created July 4, 2018 05:39
Show Gist options
  • Save supphawit/1d86e356909ac437d9020465094a836f to your computer and use it in GitHub Desktop.
Save supphawit/1d86e356909ac437d9020465094a836f to your computer and use it in GitHub Desktop.
def fibo_iter(n):
a, b = 0, 1
for i in range(n):
a, b = b, a + b
return a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment