• 코드:
​x
 
1
i = 100
2
j = 10
3
​
4
print(i < j)   # False
5
print(i >= j)  # True
6
print(i == j)  # False
7
print(i != j)  # True
8
​
표준입력 & 실행옵션