본문 바로가기
Python/Python FAQ

Python 파이썬에는 문자열에 하위 문자열이 있는지 확인하는 메소드가 있나요?, Does Python have a string 'contains' substring method?

by 베타코드 2023. 5. 5.
반응형

질문

파이썬에는 문자열에 하위 문자열이 있는지 확인하는 메소드가 있나요?:

if not somestring.contains("blah"):    continue 

답변

in 연산자를 사용하세요:

if "blah" not in somestring:      continue 
반응형

댓글