# 관계연산자 ( >, >=, <, <=, ==, != )
a = 10
b = 0
print(a==b)
print(a!=b)
print(a>b)
print(a>=b)
print(a<b)
print(a<=b)
# 참 거짓 종류(True, False)
참 : "내용", [내용], (내용), {내용},1
거짓 : "", [], (), {}, 0
city = ""
if city:
print(">>>True")
else:
print(">>>False")
# 논리 연산자 ( and or not )
a = 100
b = 60
c = 15
print('and :', a > b and b > c)
print('or : ', a > b or c > b)
print('not : ' ,not a > b)
print(not False)
print(not True)
# 산술, 관계, 논리 연산자
=> 산술 > 관계 > 논리 순서로 적용 됨.
print('ex1 :' ,5 + 10 > 0 and not 7+3 ==10)
score1 = 90
score2 = 'A'
if score1 >= 90 and score2 =='A':
print("합격하셨습니다.")
else:
print("불합격입니다.")