xxxxxxxxxx
self.testButton = Button(self, text=" test", command=lambda:[funct1(),funct2()])
xxxxxxxxxx
pythonCopy def combineFunc(self, *funcs):
def combinedFunc(*args, **kwargs):
for f in funcs:
f(*args, **kwargs)
return combinedFunc