différence entre appeler une fonction et référence à une fonction Python
def caller(f):
f()
def hello():
print("hi")
def goodbye():
print("bye")
caller(hello) # Prints "hi"
caller(goodbye) # Prints "bye"
Xerothermic Xenomorph