Comment convertir la chaîne en nom de fonction dans Python

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