Can a tkinter button have multiple commands? code example
Example: tkinter give button 2 commands
button = Button(root, text="test", command=lambda:[funct1(),funct2()])
button = Button(root, text="test", command=lambda:[funct1(),funct2()])