Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Folder full of pertinent coursework

1666 views
1
#!/usr/bin/env python
2
version = 0.1
3
4
def fibiter(n):
5
"""Fibonacci number iterator"""
6
old, new = 0, 1
7
for _ in xrange(n):
8
old, new = new, old + new
9
yield(old)
10