반응형
Python에서 string.contains
또는 string.indexof
메서드를 찾고 있습니다.
나하고 싶어:
if not somestring.contains("blah"):
continue
해결 방법
if "blah" not in somestring:
continue
참조 페이지 https://stackoverflow.com/questions/3437059
반응형
'파이썬' 카테고리의 다른 글
파이썬 중첩 된 튜플의 차원을 찾는 방법은 무엇입니까? (0) | 2020.11.12 |
---|---|
파이썬 소켓 GET (0) | 2020.11.12 |
파이썬 IPython Notebook cell multiple outputs (0) | 2020.11.12 |
파이썬 Why is assertDictEqual needed if dicts can be compared by `==`? (0) | 2020.11.11 |
파이썬 추세, 계절 및 잔여 시계열 요소 분해 (0) | 2020.11.11 |
댓글