p
y
c
h
a
l
l
e
n
g
e
r
Home
Python Basics
Loops
Exercise: Build a Countdown List
Exercise: Build a Countdown List
Write a while-loop that builds
countdown
by appending
n
and decrementing it until it hits 0.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output