Skip to content

Instantly share code, notes, and snippets.

@YuRen-tw
Last active November 25, 2016 09:25
Show Gist options
  • Save YuRen-tw/51123a27c7f24706fdfeb727b6369196 to your computer and use it in GitHub Desktop.
Save YuRen-tw/51123a27c7f24706fdfeb727b6369196 to your computer and use it in GitHub Desktop.
def Fibonacci(length) :
a, b = 1, 1
for _ in range(length) :
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