Retirez la barre de titre dans Tkinter

from tkinter import *
root = Tk()
root.overrideredirect (True)
root.mainloop()
Handsome Hedgehog