Python은 String 클래스에 startswith(string) 메소드가 있습니다. 이 메서드는 검색하려는 접두사 문자열을 수락하고 문자열 개체에서 호출됩니다. 다음과 같은 방식으로 이 메서드를 호출할 수 있습니다 -
>>> 'hello world'.startswith('hell') True >>> 'hello world'.startswith('nope') False
마찬가지로 주어진 문자열의 끝에서 검색하려는 접미사 문자열을 수락하는 메서드가 있는 끝이 있습니다. 예를 들어,
>>> 'hello world'.endswith('orld') True >>> 'hello world'.endswith('nope') False