1all_commands = lamba: [func1(), func2()]
2
3button = Button(window, text="This is a button", command=all_commands)
1#Define a command
2yummy=0
3def all_commands:
4 print("burgers")
5 yummy+=1
6button = Button(window, text="Hello", command=all_commands)