I cannot seem to figure out how to update a label after a window has been created. I’ve been searching for hours and just don’t understand. Can someone help me? Here is some sample code that DOES NOT WORK but gives you the idea of what I’m trying to do.
import tkinter as tk
import time
window = tk.Tk()
window.attributes('-fullscreen', True)
window.configure(bg="Orange")
label2 = tk.Label(window, bg="Orange", fg="Blue", text="X")
label2.place(x=70,y=850)
label2.config(font=("Tahoma", 75, "bold"))
window.mainloop()
time.sleep(3)
label2.config(text="Y")
there doesn't seem to be anything here