masquer la fenêtre racine tkinter

root = tk.Tk()
# Hide it with .withdraw
root.withdraw()
# To reveal it again:
root.deiconify()
The Rambling Lank