Answers for "how to get rid of a window in tkinter"

2

hide root window tkinter

root = tk.Tk()
# Hide it with .withdraw
root.withdraw()
# To reveal it again:
root.deiconify()
Posted by: Guest on March-13-2020

Code answers related to "how to get rid of a window in tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language