how to change the title of a tkinter window code example
Example 1: change tkinter window name
windowName.title('Window Title')
#Example
import tkinter
window = tkinter.Tk()
window.title('My Title')
Example 2: tkinter window title
from tkinter import *
window = Tk() # Create instance
window.title("This is the window title!!!") # Add a title