我收到一个字符串,例如" save"。我有一个方法保存与参数。 如何在调用save()时将字符串保存转换为。 我尝试使用eval和exec。
编辑:此处解决 - > Calling a function of a module from a string with the function's name in Python
答案 0 :(得分:0)
def some_method(self):
save_method = getattr(self, 'save')
save_method() # save()