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')
>>> a = 'changzhi1990' >>> a.partition('h') ('c', 'h', 'angzhi1990')
위 내용은 Python의 문자열 함수(파티션)에 대한 자세한 설명을 공유하세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!