我这个人不喜欢过多的废话,咱们直接上代码就好了
class Person:
def __init__(self):
pass
def __call__(self, *args, **kwargs):
print(args)
print(kwargs)
return "hello everybody"
if __name__ == '__main__':
person_obj = Person()
re_result = person_obj(12, name='小明')
print(re_result)