90.7k views
5 votes
Write a program that counts down, copy&paste output in the the answer window. The code is: import time for in range(10,0,-1): print i time.sleep(1) - print "BLAST OFF!"

1 Answer

1 vote

import time as t

for i in range(10,0,-1) :

print(i)

t.sleep(1)

print("BLAST OFF")

User Aftab Alam
by
6.2k points