set tkinter title position code example
Example: tkinter window title
from tkinter import *
window = Tk() # Create instance
window.title("This is the window title!!!") # Add a title
from tkinter import *
window = Tk() # Create instance
window.title("This is the window title!!!") # Add a title