[Python] 연산자 오버로딩
■ 연산자와 특수 메소드(파이썬에서 기본적으로 제공하는 메소드) 연산자/함수 메소드 설명 + __add__(self, other) 덧셈 * __mul__(self, other) 곱셈 - __sub__(self, other) 뺄셈 / __truediv__(self, other) 나눗셈 % __mod__(self, other) 나머지 = __ge__(self, other) 크거나 같다(이상) [index] __getitem__(self, index) 인덱스 연산자 in __contains__(self, value) 멤버 확인 len __len__(self) 요소 길이 str __str__(self) 문자열 표현
2020.05.15