I am making a timer with a for loop and showing it in a tkinter window, but as I execute the script, there is no pop-up. It is very probable that there is some error I don't know of, which is probably pretty simple and I don't see it
I tryed to move the for loop within the code to maybe resolve the problem but that was no help.
import tkinter
import time
root = tkinter.Tk()
label_1 = tkinter.Label(root, text="Start")
label_1.pack()
for i in range(1, 3600):
label_1["text"] = i
time.sleep(1)
root.mainloop()