336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
객체를 숫자처럼 취급함으로써 각종 연산이 가능하다.
메서드(Method) | 연산자(Operator) | 사용 예 |
__add__(self, other) | + (이항) | A + B, A += B |
__pos__(self) | + (단항) | +A |
__sub__(self, other) | - (이항) | A - B, A -= B |
__neg__(self) | - (단항) | -A |
__mul__(self, other) | * | A * B, A *= B |
__truediv__(self, other) | / | A / B, A /= B |
__floordiv__(self, other) | // | A // B, A //= B |
__mod__(self, other) | % | A % B, A %= B |
__pow__(self, other) | pow(), ** | pow(A, B), A ** B |
__lshift__(self, other) | << | A << B, A <<= B |
__rshift__(self, other) | >> | A >> B, A >>= B |
__and__(self, other) | & | A & B, A &= B |
__xor__(self, other) | ^ | A ^ B, A ^= B |
__or__(self, other) | | | A | B, A |= B |
__invert__(self) | ~ | ~A |
__abs__(self) | abs() | abs(A) |
<미리 정의된 수치 연산자>
'ⓟrogramming > Python' 카테고리의 다른 글
[Python] 환경 변수 얻는 방법 (0) | 2016.10.14 |
---|---|
[Python] 표준 모듈 라이브러리 (sys, subprocess) (0) | 2016.10.14 |
[Python] 객체의 함수화 관련 메서드 - __call__ (0) | 2016.10.14 |
[Python] 반복자 관련 메소드 - iterator (0) | 2016.10.14 |
[Python] 소멸자 (0) | 2016.10.14 |