hide root window tkinter

Solutions on MaxInterview for hide root window tkinter by the best coders in the world

showing results for - "hide root window tkinter"
Mario
05 Jan 2020
1root = tk.Tk()
2# Hide it with .withdraw
3root.withdraw()
4# To reveal it again:
5root.deiconify()