DIGITAL CLOCK USING PYTHON

DIGITAL CLOCK USING PYTHON


Source Code:- 

 
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Digital Clock using Python
 
from tkinter import *
import time
 
root = Tk()
root.title("Digital Clock")
root.geometry("500x125")
root.resizable(0, 0)
 
def digital_clock():
    current_time = time.strftime("%I:%M:%S %p")
     
    label.config(text = current_time )
     
    label.after(100, digital_clock)
 
 
label = Label(root, font = ("Arial 60 bold"), bg = "black", fg = "green2", bd = 20)
label.pack()
 
digital_clock()
root.mainloop()
 
# Follow :- @python_with_shubham
 
 
# Digital Clock using Python

from tkinter import *
import time

root = Tk()
root.title("Digital Clock")
root.geometry("500x125")
root.resizable(0, 0)

def digital_clock():
    current_time = time.strftime("%I:%M:%S %p")
    
    label.config(text = current_time )
    
    label.after(100, digital_clock)


label = Label(root, font = ("Arial 60 bold"), bg = "black", fg = "green2", bd = 20)
label.pack()

digital_clock()
root.mainloop()

# Follow :- @python_with_shubham

Follow me on Instagram:- Python_with_Shubham

0 Comments