Is it possible to make it so that a Tkinter button calls two function?
some thing like this maybe?:
from Tkinter import *
admin = Tk()
def o():
print '1'
def t():
print '2'
button = Button(admin, text='Press', command=o, command=t)
button.pack()
Make a new function that calls both:
Alternatively, you can use this fun little function:
Then you can use it like this: