mirror of
https://github.com/metafy-social/python-scripts.git
synced 2024-11-24 12:31:11 +00:00
18 lines
376 B
Python
18 lines
376 B
Python
|
import tkinter
|
||
|
from time import strftime
|
||
|
|
||
|
top = tkinter.Tk()
|
||
|
top.title('Digital Clock')
|
||
|
top.resizable(0,0)
|
||
|
|
||
|
def time():
|
||
|
string = strftime('%H: %M: %S %p')
|
||
|
clockTime.config(text=string)
|
||
|
clockTime.after(1000, time)
|
||
|
|
||
|
clockTime = tkinter.Label(top, font=('courier new', 40),
|
||
|
background='white',foreground='black')
|
||
|
clockTime.pack(anchor='center')
|
||
|
time()
|
||
|
top.mainloop()
|