# Python CodeRecipe|partition()の使い方
❮ Home ❮ String Methods
# partition()の例1
Search for the word "bananas", and return a tuple with three elements:
1 - everything before the "match"2 - the "match"3 - everything
after the "match"
txt = "I could eat bananas all day"x = txt.partition("bananas")
print(x)
# partition()の定義及び使い方
partition()関数は、 を指定し、その文字列を3つの要素を含むタプルに分割する。 最初の要素には、指定した文字列の前の部分が含まれます。 2番目の要素には、指定した文字列が含まれます。 3番目の要素には、文字列の後の部分が含まれます。
注意:この関数は、最初のオカレンスを検索します。 を入力します。
# partition()の構文
string.partition(value)
# partition()の引数
パラメータ 説明
value:必須. The string to search for
# partition()の例2
If the specified value is not found, the partition() method returns a tuple
containing: 1 - the whole string, 2 - an empty string, 3 - an empty string:
txt = "I could eat bananas all day"x = txt.partition("apples")
print(x)
❮ Home ❮ String Methods