Fügen Sie dem Tkinter -Fenster -Python den Titel hinzu

import tkinter as tk #import module
window = tk.Tk()
window.title("Example Title!") #set title to anything

window.mainloop() #make the window
skiibloc