Have multiple commands when button is pressed

You can simply use lambda like this:

self.testButton = Button(self, text=" test", command=lambda:[funct1(),funct2()])

Leave a Comment