Please help me with the task: Countdown and Go!.

Hello, I’m working on this task:

Here is my code:


import time
print ("Starting countdown... ")
for i in range (10,0,-1):
   print (i)
   time.sleep(1)
print ("Blast off!")

Can anyone please help me to solve it?

You could try without using time?