Make electronic watch. Have made a variable Label and text = (date_time.hour, minute, second),
so they were always updated wrote:
while True:
TimeHour = Label(root, text=date_time.hour, width=5, height=2,font=('Verdana', 16, 'bold'))
TimeMinute = Label(root, text=date_time.minute, width=5, height=2,font=('Verdana', 16, '...