Boolean불리안(Boolean)은 참( True ) 또는 거짓( False )을 나타내는 데이터 타입입니다.boolean 값은 다음과 같을때 생성됩니다. 1. 직접 생성a = Trueb = False 2. 비교 연산의 결과print(5 > 3) # Trueprint(2 == 3) # False 3. 논리 연산print(True and False) # Falseprint(True or False) # Trueprint(not True) # False 4. 내장 함수 bool() 로 변환print(bool(1)) # Trueprint(bool(0)) # Falseprint(bool([])) # Falseprint(bool("Pyth..