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)

<미리 정의된 수치 연산자>





블로그 이미지

뚱땡이 우주인

,