13 __init__和__call__有什么区别? 我想知道其中的差别之间__init__和__call__方法。 例如: class test: def __init__(self): self.a = 10 def __call__(self): b = 20 553 python class oop object callable-object