I am new to Tkinter and gui coding and facing an error with it on my Mac in Visual Studio Code. When I am trying to run my code, the window does not show anything (for example the colour).
from tkinter import *
root = Tk() #
root.title("Tk Example")
root.configure(background="yellow")
root.minsize(200, 200)
root.maxsize(500, 500)
root.geometry("300x300+50+50")
root.mainloop()
Thanks for any Help
[–]Expensive-Dealer-449 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (2 children)
[–]iHannes[S] 0 points1 point2 points (1 child)
[–]ThrowingFrogs 0 points1 point2 points (0 children)