Tkinker Python Tutorial

from Tkinter  import *
root = Tk()
w = Label(root, text="Hello, Tk!")
w.pack()
root.mainloop()