如何在python方法中转换字符串?

时间:2014-04-22 11:46:31

标签: python

我收到一个字符串,例如" save"。我有一个方法保存与参数。 如何在调用save()时将字符串保存转换为。 我尝试使用eval和exec。

编辑:此处解决 - > Calling a function of a module from a string with the function's name in Python

1 个答案:

答案 0 :(得分:0)

def some_method(self):
    save_method = getattr(self, 'save')
    save_method()  # save()