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' 文字列である 3 項タプルが返されることがわかります。権利。注: r は右から左へのマッチングを意味します。
>>> a = 'changzhi1990' >>> a.partition('h') ('c', 'h', 'angzhi1990')
ここでは左から右にマッチングが始まります。
【関連する推奨事項】
1. Python のパーティション文字列関数のサンプルチュートリアル
2.文字列関数 (パーティション) のサンプルコードを共有します
3. MySQL - データテーブルパーティショニングテクノロジーの概要PARTITION コード例の分析以上がPythonの文字列関数(パーティション)の詳細な説明を共有しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。