TIL16 | Python_in, not in 포함 확인 연산

이정아·2021년 9월 12일
0

Python

목록 보기
6/20
post-thumbnail

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)

0개의 댓글