class A(): def b(self): return "Hello" a=A() print(callable(getattr(a,"b"))) print(getattr(a, "b")())