in reply to how to hide the Tk widgets

I don't anything about Tk, but I managed to find this answer :

- "withdraw" removes toplevel widgets, including the root window (it's documented under "Toplevel Window Methods, Visibility Methods")

- To remove child widgets, use the geometry manager's "forget" method ("pack_forget", "grid_forget", etc).

Hope this helps