기본(슈퍼) 클래스를 초기화하려면 어떻게 해야 합니까? Python에서 다음 코드가 있다고 가정합니다. class SuperClass(object): def __init__(self, x): self.x = x class SubClass(SuperClass): def __init__(self, y): self.y = y # how do I initialize the SuperClass __init__ here? 를 어떻게 합니까?SuperClass __init__서브클래스에서?나는 파이썬 튜토리얼을 따르고 있는데 그것은 그것을 다루지 않습니다.제가 구글에서 검색했을 때, 저는 한 가지 이상의 방법을 찾았습니다.이것을 처리하는 표준 방법은 무엇입니까?Python(버전 3까지)은 "old-style" 및 n..