MCPcopy Create free account
hub / github.com/ZiniuLu/Python-100-Days / fib

Function fib

Day66-75/code/generator01.py:1–5  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1def fib():
2 a, b = 0, 1
3 while True:
4 a, b = b, a + b
5 yield a
6
7
8def even(gen):

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected