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

Publicado el: 31 enero 2021
en el canal de: 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()


En esta página del sitio puede ver el video en línea Digital Clock in Python | Digital clock using Tkinter Python With Source Code|Python Projects de Duración hora minuto segunda en buena calidad , que subió el usuario Programming Is Hobby 31 enero 2021, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 887 veces y le gustó 46 a los espectadores. Disfruta viendo!