python 해당 값 찾기 in 연산자
2021. 7. 9. 17:01ㆍPython
data = ['짱구', '철수', '훈이', '유리', '맹구']
if '짱구' in data:
print('짱구있어요!')
if '신형만' in data:
print('신형만 있어요!')
elif '신형만' not in data:
print('신형만 없어요!')
#짱구있어요!
#신형만 없어요!
해당값이 있는지 in 연사자를 이용해 확인이 가능하고,
값이 없는지 확인은 not 연산자를 이용해 확인 할 수 있다.
728x90
반응형
'Python' 카테고리의 다른 글
Python @classmethod, @staticmethod 차이점 (0) | 2021.07.10 |
---|---|
string 자료형 문장부호 없애는 방법 string.puctuation (0) | 2021.07.09 |
cp949' codec can't decode byte 0xec in position 84: illegal multibyte sequence 오류 해결 json파일 가져올때 (0) | 2021.06.30 |
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe2 in position 14: invalid continuation byte 해결 방법 (0) | 2021.05.14 |
SyntaxError: Non-ASCII character 에러 해결 (0) | 2021.05.14 |