GameSweetGame

[파이썬] in을 이용해서 리스트, 문자열 검색하기 본문

Python

[파이썬] in을 이용해서 리스트, 문자열 검색하기

GameSweetGame 2021. 11. 24. 23:38
result1 = 1 in [1,2,3]
result2 = 5 in [1,2,3]

result3 = 1 not in [1,2,3]
result4 = 5 not in [1,2,3]

result5 = "j" in "python"
result6 = "y" in "python"
result7 = "y" not in "python"

print(result1)
print(result2)
print(result3)
print(result4)
print(result5)
print(result6)
print(result7)

출력을 먼저 해보면 이렇게 bool 형식으로 나온다.

출력한 값

result1에서 리스트 [1, 2, 3] 안에 1이 있니? -> 있음 -> True 출력

result2는 리스트[1, 2, 3]안에 5가 있니? -> 없음 -> False 출력

not in은 반대로 하는 것이고

문자열도 리스트 처럼 확인이 가능하다.

result5를 보면 python 안에 j가 있니? -> 없음 -> False 출력. 리스트와 똑같이 적용되는 것을 볼 수 있다