Implement a rocket launch countdown.

To do this we would create a function with a simple loop that iterates downwards and prints the numbers downwards. Then at the end of the loop we would simply print 'blast off'.def countdown (n): while n > 0: print (n) n = n - 1 print ("blast off")

MM

Related Python Mentoring answers

All answers ▸

How would you write a while loop to print all even numbers from 1-10?


Create an rock, paper, scissors game. The user should input one option, and the computer should play randomly.


How do I define a function in Python?


Creating string from multiple strings(or characters)