无意中发现还有这种用法
class A(object): def test(self): print('test1') fun = getattr(A, 'test') fun(A) #一定要加A # 结果test1