# __author: "ZXYang"# date: 2020/12/13class MyTest(): def __call__(self, *args, **kwargs): print("__call__方法")m = MyTest()m()# __call__方法: m()可直接 【加()】调用对象