- Python - 프로그래밍 시작하기
- Python 기초 (Basics)
- Python 변수 (Variables)
- Python 연산자 (Operators)
- Python 리스트 (List)
- Python 튜플 (Tuple)
- Python 문자열 (Strings)
- Python 집합 (Sets)
- Python 딕셔너리 (Dictionary)
- Python 흐름 제어 (Flow control)
- Python 함수 (Function)
- Python 클래스 (Class)
- Python 내장 함수 (Built-in function)
- Python 키워드 (Keyword)
- Keyword - and
- Keyword - as
- Keyword - assert
- Keyword - break
- Keyword - class
- Keyword - continue
- Keyword - def
- Keyword - del
- Keyword - elif
- Keyword - else
- Keyword - except
- Keyword - False
- Keyword - for
- Keyword - from
- Keyword - global
- Keyword - if
- Keyword - import
- Keyword - in
- Keyword - is
- Keyword - lambda
- Keyword - None
- Keyword - not
- Keyword - or
- Keyword - pass
- Keyword - return
- Keyword - True
- Keyword - try
- Keyword - while
- Python 파일 다루기
- Python datetime 모듈
- Python time 모듈
- Python collections.deque
- Python collections.namedtuple
- Python의 선 (Zen of Python)
- Python Tutorial
- NumPy Tutorial
- Matplotlib Tutorial
- PyQt5 Tutorial
- BeautifulSoup Tutorial
- xlrd/xlwt Tutorial
- Pillow Tutorial
- Googletrans Tutorial
- PyWin32 Tutorial
- PyAutoGUI Tutorial
- Pyperclip Tutorial
- TensorFlow Tutorial
- Tips and Examples
비교 연산자 (Comparison operator)¶
비교 연산자 (Comparison operator)는 값을 비교하는데 사용됩니다.
조건에 따라 True
또는 False
를 반환합니다.
비교 연산자 종류¶
> : 왼쪽 피연산자가 오른쪽 피연산자보다 크다.
< : 왼쪽 피연산자가 오른쪽 피연산자보다 작다.
== : 두 피연산자가 같다.
!= : 두 피연산자가 같지 않다.
>= : 왼쪽 피연산자가 오른쪽 피연산자보다 크거나 같다.
<= : 왼쪽 피연산자가 오른쪽 피연산자보다 작거나 같다.
예제¶
print(3 > 2) # Result: True
print(3 < 2) # Result: False
print(2 == 2) # Result: True
print(2 == 2.0) # Result: True
print(3 != 2) # Result: True
print(2 >= 5) # Result: False
print(2 <= 5) # Result: True
True
False
True
True
True
False
True
연산의 결과가 참일 경우 True
를, 그렇지 않은 경우 False
를 출력합니다.
이전글/다음글
다음글 : 논리 연산자 (Logic operator)