Advanced countdown timer in python. It's a small python project that is very easy to use.
Advanced countdown timer in python. It's a small python project that is very easy to use.The graphical user interface of this application has been developed using the python tkinter module. Users have to select the time through the combobox that he/she wants to set for the timer.Time will be decreased by 1 per second. The remaining time will show on the window. When the timer will reach to zero.
The program takes input through the Tkinter Combobox in hours, minutes, and seconds. Then the time is stored in the "time_left" variable in seconds.
Next, I've declared a while loop for countdown the time reach zero. The divmod method has been used for dividing the total time into hours, minutes, and seconds. Then the time decreases by 1 in every one second and updates the current remaining time on the "time_display" label.
Submitted by Pradeep Uttam Yeole (Pradeep123)
Download packets of source code on Coders Packet
Comments