countdown timer with python

Solutions on MaxInterview for countdown timer with python by the best coders in the world

showing results for - "countdown timer with python"
Greta
02 Nov 2017
1import time
2import pyttsx3
3
4def countdown(t):
5    while t:
6        mins, seconds = divmod(t, 60)
7        timer = "{:02d}:{:02d}".format(mins,seconds)
8        print(timer, end="\r")
9        time.sleep(1)
10        t -= 1
11        
12    pyttsx3.speak("Beep Beep Beep Beep Beep Beep")
13    pyttsx3.speak("Timer has completed")
14    print("Timer has done")
15timer = int(input("Enter the time in seconds:- "))
16
17print(countdown(timer))
Alyssia
07 Feb 2019
1import tkinter as tk
2
3
4class ExampleApp(tk.Tk):
5    def __init__(self):
6        tk.Tk.__init__(self)
7        self.label = tk.Label(self, text="", width=10)
8        self.label.pack()
9        self.remaining = 0
10        self.countdown(10) 
11
12    def countdown(self, remaining = None):
13        if remaining is not None:
14            self.remaining = remaining
15
16        if self.remaining <= 0:
17            self.label.configure(text="time's up!")
18        else:
19            self.label.configure(text="%d" % self.remaining)
20            self.remaining = self.remaining - 1
21            self.after(1000, self.countdown)
22
23if __name__ == "__main__":
24    app = ExampleApp()
25    app.mainloop()
queries leading to this page
make countdown pythoncountdown python for loophow to make a countdown pythonpython print time countdowncountdown time in pythonhow to make countdown timer python based on timepython time countdownhow to countdown in pythoncountdown script pythonpython built in timer 2fcountdowncountdown clockin pythonhow to make a countdown in pythonpython countdown timer codepython libray countdownpython timer countdown callbackcountdown minutes pythonhow to create a countdown timer in pythonmaking countdown pythonspeed up countdown timer in pythoncountdown timer to specific date and time pythonhow to use countdown timer pythonbuild countdown pythonpython countdown timer with datetimepython countdown listhow to make a countdown timer program in pythonmake a countdown timer in pythoncountdown while doing a function pythonpython countdown clock projectcreate a countdown in pythonpython create countdowncountdown timer pythoncountdown timer in pythonpython countdown looppython set countdownhow to make a countdown program in pythonpython date countdownpython countdown datehow to make a count down timer program in pythoncountdown with time time 28 29 pythonpython countdownpython 3 countdownhow to print countdown in pythoncountdown pythonhow to make countdown timer pythondisplay countdown pythoncount down timer pythonpython countdown timercountdown in pythoncountdown functioni with pythonhow to make a countdown timer in pythonprint countdown timer pythoncountdown timer in python for how long the program takeshow to do countdown in pythonhow to create a countdown in pythonpython print countdowncreate a countdown pythoncreate countdown pythontimer countdown pythoncountdown timer prompt pythonhow to use countdown timer pakage pythonpython what library is used for making a countdown timerpython countdown in minutes and secondscountdown timer with pythonmake countdown timer pythoncountdown with pythonhow to add a countdown timer in pythoncountdown and clock timer pythonhow to make a countdown timer in pyhtoncountdown clock in pythonset a countdown in pythoncountdown function pythonhow to make a countdown in python3how to stop python for some time in pythonpython countdown functionprint countdown pythonpython for countdownpython timer countdownbuilding a countdown function pythonhow to use python to sleep if the user is not using the systemhow to make countdown program in pythoncountdown timer on pythoncountdown time pythoncountdown to date pythonhow to make a countdown for a function pythontime countdown pythoncountdown python htmlhow to make a countdown based in date pythonhow to do a countdown with a for loop pythoncountdown timer with python