Python Tkinter Program To Changing The Window Position 29 January 2023 by zeroones.org 01. Example: import tkinter as tk root = tk.Tk() root.title('Tkinter Title') root.geometry('640x480+200+200') root.mainloop() Output: Simple ouput window.