Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python startswith() 및 끝 너비() 함수


Python은 String 클래스에 startswith(string) 메소드가 있습니다. 이 메서드는 검색하려는 접두사 문자열을 수락하고 문자열 개체에서 호출됩니다. 다음과 같은 방식으로 이 메서드를 호출할 수 있습니다 -

>>> 'hello world'.startswith('hell')
True
>>> 'hello world'.startswith('nope')
False

마찬가지로 주어진 문자열의 끝에서 검색하려는 접미사 문자열을 수락하는 메서드가 있는 끝이 있습니다. 예를 들어,

>>> 'hello world'.endswith('orld')
True
>>> 'hello world'.endswith('nope')
False