import tkinter as tk #import the module window = tk.Tk() #set the window window.geometry("400x400") #make the window a size (include as a stirng window.mainloop() #load the window