import time def timer(): now = time.localtime(time.time()) return now[5] run = raw_input(\"Start? > \") while run == \"start\": minutes = 0 current_
import time mintt=input("How many seconds you want to time?:") timer=int(mintt) while (timer != 0 ): timer=timer-1 time.sleep(1) print(timer)
This work very good to time seconds.