def count_down(start):
# complete function here...
print(count_down(3)) # expected output: [3,2,1,0]
print(count_down(5)) # expected output: [5,4,3,2,1,0]
Python
Setting up Python environment...
Output
def count_down(start):
# complete function here...
print(count_down(3)) # expected output: [3,2,1,0]
print(count_down(5)) # expected output: [5,4,3,2,1,0]
Setting up Python environment...