Digital Clock in Python | Digital clock using Tkinter Python With Source Code|Python Projects

Published: 31 January 2021
on channel: Programming Is Hobby
887
46

Hello Guys,
Today in this project I will tell you that how to make a digital clock in python
Source Code --
import time
from tkinter import *
import pyttsx3

root= Tk()

root.geometry("350x150+0+0")
root.title("Clock")

root.configure(background="black")

root.resizable(0, 0)



def start():
text= time.strftime("%H:%M:%S")
label.config(text=text)
label.after(100,start)


label=Label(root,font=("DS-digital",50),bg='black',fg='red',bd=50)
label.grid(row=0,column=1)
start()
print("done")
root.mainloop()


On this page of the site you can watch the video online Digital Clock in Python | Digital clock using Tkinter Python With Source Code|Python Projects with a duration of hours minute second in good quality, which was uploaded by the user Programming Is Hobby 31 January 2021, share the link with friends and acquaintances, this video has already been watched 887 times on youtube and it was liked by 46 viewers. Enjoy your viewing!