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

Function countdown_con

Day66-75/code/coroutine01.py:12–19  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

10
11
12def countdown_con():
13 while True:
14 n = yield
15 if n:
16 print(f'Countdown {n}')
17 sleep(1)
18 else:
19 print('Countdown Over!')
20
21
22def main():

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected