Python의 추상 클래스와 인터페이스의 차이 파이썬의 추상 클래스와 인터페이스의 차이점은 무엇입니까?다음과 같은 경우가 있습니다. class Abstract1: """Some description that tells you it's abstract, often listing the methods you're expected to supply.""" def aMethod(self): raise NotImplementedError("Should have implemented this") Python은 공식적인 인터페이스 계약을 가지고 있지 않기 때문에 (그리고 필요하지 않기 때문에) 추상화와 인터페이스의 자바 스타일의 구별은 존재하지 않습니다.누군가가 정식 인터페이스를 정의하기 위해 노력한다면, 그 또한 ..