in 연산자의 결과는 bool 타입이며 확인하고자 하는 데이터가 있는 경우 True, 없는 경우 False를 반환합니다.
a = [1, 2, 3, 4, 5] if 1 in a: # 1이 a에 있으면 print(True) else: print(False) #not in은 반대로 없을 시 True반환 if 7 not in a: # 7이 a에 없으면 print(True) else: print(False)