I am trying to make a GUI in Tkinter and am wondering how to refresh a window, namely if I fill in a rectangle, I want the GUI to delete it a specified time later. How would I go about doing this? Documentation on Tkinter seems to be thin…
Share
Each Tkinter widget has a
aftermethod, which you can use to call your rectangle delete function e.g. in the example below first I change a msg usingafter, and then destruct the window usingafter