from Tkinter import *
window = Label(text = "Hello, World!").pack()
button = Button(text = "Exit", command = 'exit').pack()
mainloop()
