달나라 노트

Python Basic : startswith, endswith (시작 문자 매칭하기, 끝 문자 매칭하기) 본문

Python/Python Basic

Python Basic : startswith, endswith (시작 문자 매칭하기, 끝 문자 매칭하기)

CosmosProject 2022. 2. 15. 23:01
728x90
반응형

 

 

 

Python의 내장 함수 중 startswith과 endswith의 사용법은 아래와 같습니다.

string.startswith(text)
string.endswith(text)

어떠한 문자(string)에 적용할 수 있습니다.

 

startswith은 적용한 문자(string)가 text로 시작하면 True를 그렇지 않으면 False를 return합니다.

endswith은 적용한 문자(string)가 text로 시작하면 True를 그렇지 않으면 False를 return합니다.

 

 

 

아래는 startswith과 endswith의 예시입니다.

test_string = 'watermelon'

print(test_string.startswith('wa'))    # --> True
print(test_string.startswith('wate'))  # --> True
print(test_string.startswith('ate'))   # --> False

print(test_string.endswith('on'))      # --> True
print(test_string.endswith('lon'))     # --> True
print(test_string.endswith('elo'))     # --> False

 

 

 

 

 

 

728x90
반응형
Comments