cara mengonversi nama string ke fungsi dalam python

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