p
y
c
h
a
l
l
e
n
g
e
r
Home
Python Basics
Time to Practice I
Count down
Count down
Write a function
count_down
that takes a positive integer
start
as input and returns a list of integers counting down from
start
to 0.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output