from Tkinter import *
widget = Label(None, text='Hello world!')
widget.pack()
widget.mainloop()
