Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ZiniuLu/Python-100-Days
/ countdown_gen
Function
countdown_gen
Day66-75/code/coroutine01.py:4–9 ·
view source on GitHub ↗
(n, consumer)
Source
from the content-addressed store, hash-verified
2
3
4
def
countdown_gen(n, consumer):
5
consumer.send(None)
6
while
n > 0:
7
consumer.send(n)
8
n -= 1
9
consumer.send(None)
10
11
12
def
countdown_con():
Callers
1
main
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected