run multiple functions onclick tkinter code example
Example 1: tkinter give button 2 commands
button = Button(root, text="test", command=lambda:[funct1(),funct2()])
Example 2: multiple functions tkinter
command=lambda:[funcA(), funcB(), funcC()]