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

Read more of this post