Comment appeler n'importe quelle fonction avec son nom comme une chaîne

def add(x,y):
	print('does something')
    
eval("add")(x,y)
Darkstar