본문 바로가기
파이썬

파이썬 Does Python have a string 'contains' substring method?

by º기록 2020. 11. 12.
반응형

Python에서 string.contains 또는 string.indexof 메서드를 찾고 있습니다.

나하고 싶어:

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

 

해결 방법

 


if "blah" not in somestring: 
    continue

 

참조 페이지 https://stackoverflow.com/questions/3437059

 

 

반응형

댓글