def add(x,y): print('does something') eval("add")(x,y)
def test(): print("Working") eval("test") # function name # or eval("test")() # function call