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