Tkinker Python Tutorial

from Tkinter  import *
root = Tk()
root.title("Simple GUI")
root.geometry("200x100")
root.mainloop()