标签: python
我想知道Python中是否可以构建这样的构造:
class A(): def method1(self): print ('method 1') def method2(self): print ('method 2') a = A() call_method(a, 'method1') call_method(a, 'method2')
预期结果: 方法1 方法2
如何定义call_method?
call_method
提前致谢