질문 : 파이썬의 super ()는 다중 상속과 어떻게 작동합니까? 저는 파이썬 객체 지향 프로그래밍에서 꽤 새로운 편이며 super() 함수 (새 스타일 클래스)를 이해하는 데 어려움이 있습니다. 예를 들어 다음과 같은 경우 : class First(object): def __init__(self): print "first" class Second(object): def __init__(self): print "second" class Third(First, Second): def __init__(self): super(Third, self).__init__() print "that's it" 내가 얻지 못하는 것은 : Third() 클래스가 두 생성자 메서드를 상속 할 것인가? 그렇다면 어떤 것이 s..