I am writing a countdown in python but it doesn't work.
for countdown in 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, quit():
print (countdown)
That's the code. The countdown just zooms by and quits the program. Is there a way to make the countdown comply to real time and countdown and quit in 10 seconds. Not immediately.