button = Button(root, text="test", command=lambda:[funct1(),funct2()])
all_commands = lamba: [func1(), func2()]
button = Button(window, text="This is a button", command=all_commands)
pythonCopyfor f in funcs:
f(*args, **kwargs)
pythonCopy def combineFunc(self, *funcs):
def combinedFunc(*args, **kwargs):
for f in funcs:
f(*args, **kwargs)
return combinedFunc
self.testButton = Button(self, text=" test", command=lambda:[funct1(),funct2()])