Untitled
public python v1 · immutableimport Tkinterapp = Tkinter.Tk()def pressed(event): print "the button was pressed"def released(event): print "the button was released"def command(): print "the button's command was invoked"b = Tkinter.Button(app, command=command)b.bind("<ButtonPress>", pressed)b.bind("<ButtonRelease>", released)b.pack()app.mainloop()