python 조건식과 비트연산1 ddazua | 8강 연산자2 - 조건식과 비트연산 #%% (1) 관계 연산자 isTrue = 10 == 11 # False isTrue = 10 != 11 # True print(isTrue) #%% (2) 논리 연산자 isTrue = 10 == 11 and 10 > 1 # (10!=11) False and True(10은 1보다 크다) F and T -> False isTrue = 10 == 11 or 10 > 1 # (10!=11) False or True(10은 1보다 크다) F or T -> True print(isTrue) '''day08.txt 비트 연산 1byte = 8bit 전구 8개가 모이면 1byte다. 비트 : 0 또는 1 10진수 : 0 ~ 9 2진수 : 0, 1 논리 연산자 & AND 두 비트가 모두 1이면 1 | OR 둘 중 하.. 2021. 9. 15. 이전 1 다음