是否可以将成员变量名称作为参数传递?

时间:2017-04-12 08:16:23

标签: 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

提前致谢

0 个答案:

没有答案