개요
파이썬 연산자는 다음과 같습니다.
- 산술 연산자(Arithmetic Operators)
- 할당 연산자(Assignment Operators)
- 비교 연산자(Comparison Operators)
- 논리 연산자(Logical Operators)
- 식별 연산자(Identity Operators)
- 멤버 연산자(Membership Operators)
- 비트 연산자(Bitwise Operators)
논리 연산자
and | AND 연산 | x < 5 and x < 10 |
or | OR 연산 | x < 5 or x < 4 |
not | 조건문을 부정 | not(x < 5 and x < 10) |
참고자료
'python > basic' 카테고리의 다른 글
[Python] 연산자(Operators) - (6) 멤버 연산자 (0) | 2023.05.31 |
---|---|
[Python] 연산자(Operators) - (5) 식별 연산자 (0) | 2023.05.31 |
[Python] 연산자(Operators) - (3) 비교 연산자 (0) | 2023.05.31 |
[Python] 연산자(Operators) - (2) 할당 연산자 (0) | 2023.05.31 |
[Python] 연산자(Operators) - (1) 산술 연산자 (0) | 2023.05.31 |