숫자 형을 위한 연산자
- 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
:='코딩 > 파이썬 기초' 카테고리의 다른 글
| [Python] 파이썬 3.9.x 튜토리얼 001. 파이썬 인터프리터 실행 후 종료 방법 (0) | 2021.05.15 |
|---|---|
| [Python] 파이썬 데이터 타입 (자료 형) - str (0) | 2021.05.09 |
| [Python] 파이썬 논리 및 비교 연산자 (0) | 2021.05.09 |
| [Python] 파이썬 데이터 타입 (자료 형) - int, bool, float, complex (0) | 2021.05.09 |
| [python] 파이썬 3.9.x Glossary (0) | 2020.12.15 |