Answers for "clock using 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

python clock

# Here is a self updating clock function, just run it and it'll self update itself until you hit CTRL-C
import datetime
import time
def clock():
    while True:
        print(datetime.datetime.now().strftime("%H:%M:%S"), end="r")
        time.sleep(1)

clock()
Posted by: Guest on July-23-2020
1

how to make a clock usig pytohn

please subscribe my channel - https://bit.ly/2Me2CfB

from tkinter import *
import time
import playsound

root = Tk()
root.geometry('600x175')
root.title("Clock")
root.config(background='black')

def clock():
    main_time = time.strftime("%H:%M:%S:%p")
    lbl.config(text=main_time)
    lbl.after(1000, clock)

lbl = Label(root, text="", font=('Digital Display Regular', 90), bg="black", fg="cyan")
lbl.pack(anchor=CENTER)

clock()
root.mainloop()
Posted by: Guest on July-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language