True, False 는 논리형 데이터로 python에서 type 함수로 확인할 경우에 bool이라고 뜹니다. 그런데 bool 타입 뒤에 + 0 를 붙이면 True는 1, False는 0으로 바뀌게 됩니다. 물론 int 함수로 형 전환을 해도 숫자로 바꿀 수 있습니다. True Out[1]: True False Out[2]: False True + 0 Out[3]: 1 False + 0 Out[4]: 0 type(True) Out[5]: bool type(False) Out[6]: bool type(True + 0) Out[7]: int type(False + 0) Out[8]: int