Tkinker Python Tutorial

from Tkinter  import *
     
class HelloButton(Button):
    def __init__(self, parent=None, **config):         
        Button.__init__(self, parent, config)          
        self.pack()
        self.config(command=self.callback)
    def callback(self):                                
        print 'Goodbye world...'                       
        self.quit()
 
HelloButton(text='Hello subclass world').mainloop()