Coding Task: 04.03 Countdown

Houston, we have lift-off!

Your Task

Fill in the _____ (blanks) and complete the code to write the program below:

1) Start counting down from 10 to 1.

2) At each count, display the number and wait for the user to press [ENTER]

3) After the count of 1, draw a rocket ship!

Python Reference Sheet

Remember to use the Python reference sheet to help you with your code! Click on one of the buttons below:

Requirements

  • The program should run without any errors.
  • The program should count down from 10 to 1, pausing after each number until the user presses [ENTER], and then display the rocket ship at the count of 1.

Example

Below is an example of how the program should run:

Press [ENTER] to count down!
Seconds to lift off: 10
Seconds to lift off: 9
Seconds to lift off: 8
Seconds to lift off: 7
Seconds to lift off: 6
Seconds to lift off: 5
Seconds to lift off: 4
Seconds to lift off: 3
Seconds to lift off: 2
Seconds to lift off: 1


       !
       !
       ^
      / \
     /___\
    |=   =|
    |  A  |
    |  u  |
    |  s  |
    |  t  |
    |  r  |
    |  a  |
    |  l  |
    |  i  |
    |  a  |    
    |  !  |        
    |     |
   /|##!##|\
  / |##!##| \
 /  |##!##|  \
|  / ^ | ^ \  |
| /  ( | )  \ |
|/   ( | )   \|
    ((   ))
   ((  :  ))
   ((  :  ))
    ((   ))
     (( ))
      ( )
       .
       .
       .  
Scroll to Top