comment passer la fonction comme paraemter d'une autre fonction pythpn
def add(a, b):
return a + b
def mul(a, b):
return a * b
def calculate(a, b, func): #calculate is higher order function
return func(a, b)
print(calculate(2, 3, mul))
Arpan