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