class Test:
@staticmethod
def call():
return
def callMethod1():
return
def callMethod2():
return
var methodName='Method1'
我想调用callMethod1
或callMethod2
在 call() 中使用"call"+methodName()
. 即,在 php 中,我们确实使用 T 调用任何成员est->{"call".methodName}()
我如何在没有 eval() 方法的情况下在 python 中实现这一点。