标签: python
我目前有一个对象实例,可以将其称为myObject。这个myObject具有类似executeX,executeY之类的方法。我想将此方法作为字符串传递,这样我就可以执行类似的操作 command = data.get('do'),然后myObject.command,并将 命令 视为属性。我该如何实现?
myObject
executeX
executeY
command = data.get('do')
myObject.command