GUI Tk Python

from Tkinter import *
def greeting():
    print 'Hello'
win = Frame()  
win.pack()
Label(win,  text='Hello container world').pack(side=TOP)          
Button(win, text='Hello', command=greeting).pack(side=LEFT)
Button(win, text='Quit',  command=win.quit).pack(side=RIGHT)
win.mainloop()