Tkinter is used to create windows in python from tkinter import * #import tkinter window = Tk() #create the window window.title("Title") #Set window title window.geoemtry("400x400") #Adjusts window to 400x400px window.mainloop() #Updates window