Clock on tkinter doesn't work
I created a weather app, but the clock just constantly stand still the time, how to fix it???
current = datetime.now(home)
real = current.strftime("%d/%m/%Y\n%H:%M:%S %p")
clock.config(text=real)
root.after(1000, clock)
root = Tk()
root.title("Weather App")
root.geometry("910x500")
root.resizable(0, 0)
root.mainloop()
Here's how I do it
I would like the clock to change its minute, I tried but I can't
It just stand still and doesn't change -_-your text