class Test:
@staticmethod
def call():
return
def callMethod1():
return
def callMethod2():
return
var methodName='Method1'
我想用"call"+methodName()
調用呼叫callMethod1
或callMethod2
()。即在php中,我們打電話給任何成員使用T est->{"call".methodName}()
如何在沒有eval()方法的python中實現這一點。的Python:按名稱調用類及類方法使用eval