Python Make Button faire plus d'une commande

# Make a button do more than one command
def funct1():
  print("function 1")

def funct2():
  print("function 2")

Button(root, text=" test", command=lambda:[funct1(),funct2()])
Hello There