[022] True와 False 이해하기

책 내용에 대한 무단배포 방지를 위해 최소한으로 정리

a = True
b = False
print(a==1)
print(b!= 0)

Comments