partition(...) S.partition(sep) -> (head, sep, tail) Search for the separator sep in S, and return the part before it, the separator itself, and the part after it. If the separator is not found, return S and two empty strings.
예:
>>> a = 'changzhi1990' >>> a.rpartition('h') ('changz', 'h', 'i1990')
'h' 왼쪽에 문자열, 구분 기호 'h' 자체 및 구분 기호 'h' 오른쪽에 있는 문자열입니다. 참고: r은 오른쪽에서 왼쪽으로 일치함을 의미합니다.
>>> a = 'changzhi1990' >>> a.partition('h') ('c', 'h', 'angzhi1990')여기서 일치는 왼쪽에서 오른쪽으로 시작됩니다. [관련 추천]
위 내용은 Python의 문자열 함수(파티션)에 대한 자세한 설명을 공유하세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!