BLASTOFF

Report a typo

Write a function countdown that works by decrementing nn till it reaches 11, then prints BLASTOFF!

There are many ways to solve this task, but please try to solve using recursion.

Sample Input 1:

10

Sample Output 1:

10 9 8 7 6 5 4 3 2 1 BLASTOFF!
Write a program in Python 3
def blast(n):
pass
blast(int(input()))
___

Create a free account to access the full topic