본문 바로가기

코딩/파이썬 기초

[Python] 파이썬 데이터 타입 (자료 형) - 숫자 형을 위한 연산자

숫자 형을 위한 연산자

  • int
  • float
  • complex (일부 연산자 적용 불가. 예. //)
x + y

x - y

x * y

x / y

x // y

x % y

-x

+x

abs(x)

int(x)

float(x)

complex(re, im)

c.conjugate()

divmod(x, y)

pow(x, y)

x ** y

 

숫자 형을 위한 연산자 우선순위

 

(expressions...), [expressions...], {key: value...}, {expressions...}

x[index], x[index: index], x(arguments...), x.attribute

await x

**

+x, -x, ~x

*, @, /, //, %

+, -

<<, >>

&

^

|

in, not in, is, is not, <, <=, >, >=, !=, ==

not x

and

or

if - else

lambda

:=