Event Python

from Tkinter import *
def hello(event):
    print 'Press twice to exit'              
def quit(event):                             
    print 'Hi...'        
    import sys; sys.exit() 
widget = Button(None, text='Hello event world')
widget.pack()
widget.bind('', hello)             
widget.bind('', quit)              
widget.mainloop()