import Tkinterimport syswin = Tkinter.Tk()b = Tkinter.Button(win, text="Hello Python World!",command=sys.exit)b.pack()win.mainloop()