13 __init__と__call__の違いは何ですか? __init__と__call__メソッドの違いを知りたい。 例えば: class test: def __init__(self): self.a = 10 def __call__(self): b = 20 554 python class oop object callable-object