from Tkinter import *# create the root windowroot = Tk()# modify the windowroot.title("Create a window")root.geometry("200x200")# Start the window's event-looproot.mainloop()