MCPcopy 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
4def countdown(n):
5 while n > 0:
6 yield n
7 n -= 1
8
9
10def main():

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected