Respuesta :
Answer:
def countdown(n):
if n <= 0:
print('Blastoff!')
else:
print(n)
countdown(n-1)
def countup(n):
if n >= 0:
print('Blastoff!')
else:
print(n)
countup(n+1)
number = int(input("Enter a number: "))
if number >= 0:
countdown(number)
elif number < 0:
countup(number)
Outputs:
Enter a number: 3
3
2
1
Blastoff!
Enter a number: -3
-3
-2
-1
Blastoff!
Enter a number: 0
Blastoff!
For the input of zero, the countdown function is called.
Explanation:
Copy the countdown function
Create a function called countup that takes one parameter, n. The function counts up from n to 0. It will print the numbers from n to -1 and when it reaches 0, it will print "Blastoff!".
Ask the user to enter a number
Check if the number is greater than or equal to 0. If it is, call the countdown function. Otherwise, call the countup function.
Recursive functions calls themselves in a function, until a certain condition is met. It allows us to get rid of repetitive function calls. Hence, the recursive function for the action is given thus :
def countdown(n):
#initialize countdown function :
if n <= 0:
#blast off condition
print('Blastoff!')
else:
print(n)
countdown(n-1)
#recursion
def countup(n):
#initialize countuo function
if n >= 0:
#blast off condition
print('Blastoff!')
else:
print(n)
countup(n+1)
number = int(input("Enter a number: "))
#takes input from user
if number >= 0:
countdown(number)
else:
number < 0:
countup(number)
Learn more : https://brainly.com/question/20702793