728x90
반응형
질문 : 파이썬에 문자열 '포함'하위 문자열 메서드가 있습니까?
Python에서 string.contains
또는 string.indexof
메서드를 찾고 있습니다.
나하고 싶어:
if not somestring.contains("blah"):
continue
답변
in
연산자를 사용할 수 있습니다.
if "blah" not in somestring:
continue
출처 : https://stackoverflow.com/questions/3437059/does-python-have-a-string-contains-substring-method
728x90
반응형
'프로그래밍 언어 > Python' 카테고리의 다른 글
Python 오류 “ImportError : No module named” (0) | 2021.09.28 |
---|---|
Python에 ++ 및 - 연산자가 없는 이유 (0) | 2021.09.28 |
Python의 re.compile가 필요한 이유 (0) | 2021.09.27 |
파이썬에서 "private" 변수 (0) | 2021.09.16 |
파이썬에서 "named tuples" 이란? (0) | 2021.09.15 |