TKINTER TITRE FENETRE

import Tkinter as Tk
 
root = Tk.Tk()
root.title('Main root')

root.mainloop()
Uninterested Unicorn