반응형
질문
파이썬에는 문자열에 하위 문자열이 있는지 확인하는 메소드가 있나요?:
if not somestring.contains("blah"): continue
답변
in
연산자를 사용하세요:
if "blah" not in somestring: continue
반응형
'Python > Python FAQ' 카테고리의 다른 글
Python 어떻게 디렉토리의 모든 파일을 나열할 수 있나요?, How do I list all files of a directory? (0) | 2023.05.05 |
---|---|
Python __init__.py는 무엇을 위한 것인가요?, What is __init__.py for? (0) | 2023.05.05 |
Python 바이트를 문자열로 변환하세요., Convert bytes to a string (0) | 2023.05.05 |
Python 파일 복사하는 방법, How to copy files (0) | 2023.05.05 |
Python 하나의 줄에서 여러 예외를 잡으세요 (except 블록), Catch multiple exceptions in one line (except block) (0) | 2023.05.05 |
댓글