Answers for "how to write a timer in python"

3

how to create clock in python

import sys
from  tkinter import *
import time 

def times():
    current_time=time.strftime("%H:%M:%S") 
    clock.config(text=current_time)
    clock.after(200,times)


root=Tk()
root.geometry("500x250")
clock=Label(root,font=("times",50,"bold"),bg="black",fg='blue')
clock.grid(row=2,column=2,pady=25,padx=100)
times()

digi=Label(root,text="Digital clock",font="times 24 bold",fg="violet")
digi.grid(row=0,column=2)

nota=Label(root,text="hours   minutes   seconds   ",font="times 15 bold")
nota.grid(row=3,column=2)

root.mainloop()
Posted by: Guest on August-23-2020
2

timer in python

import time, os

seconds_to_go_for = 10 # How long the timer will go for
current_time = int(time.time()) # Gets the time before the timer starts

def clear():
  if os.name == "nt":
    os.system("cls") # Clear function, to avoid spam. Source: geeksforgeeks.org
  else:
    os.system("clear")

while True:
  time_now = int(time.time()) # Gets time during the timer's running
  if time_now >= current_time + seconds_to_go_for: # Checks if enough time has passed
    break # Stops loop if so
  
  print(f"Seconds passed: {time_now - current_time}") # Prints how much time has passed
  clear()
print("The timer has ended")
Posted by: Guest on September-22-2020
0

how to make a minute counter in python

counter = 1
print(counter)
import time
while True:
    time.sleep(60)
    counter += 1
    print(counter)
#this adds one to the counter every 60 seconds
Posted by: Guest on August-24-2020
2

timer in python

timer = threading.Timer(interval, function, args = None, kwargs = None)
timer.start()
Posted by: Guest on May-09-2020

Code answers related to "how to write a timer in python"

Python Answers by Framework

Browse Popular Code Answers by Language