Skip to content

Instantly share code, notes, and snippets.

@giljr
Last active March 20, 2021 14:59
Show Gist options
  • Save giljr/0ca56034b20adbb4be1856ff29a0969a to your computer and use it in GitHub Desktop.
Save giljr/0ca56034b20adbb4be1856ff29a0969a to your computer and use it in GitHub Desktop.
def prog_fibo_2(n):
a = 1
b = 1
for i in range(n):
yield a
a, b = b, a + b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment