Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dabeaz-course/python-mastery
/ countdown
Function
countdown
Solutions/8_5/multitask.py:15–19 ·
view source on GitHub ↗
(n)
Source
from the content-addressed store, hash-verified
13
print(
'Task done'
)
14
15
def
countdown(n):
16
while
n > 0:
17
print(
'T-minus'
, n)
18
yield
19
n -= 1
20
21
def
countup(n):
22
x = 0
Callers
1
multitask.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected