Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
def
fib():
2
a, b = 0, 1
3
while
True:
4
a, b = b, a + b
5
yield
a
6
7
8
def
even(gen):
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected