Tkinker Python Tutorial

from Tkinter  import *
root = Tk() 
Label(root, text='Hello GUI world!').pack(side=TOP) 
root.mainloop()