Como chamar qualquer função com o nome como uma string

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