# Python CodeRecipe|rpartition()の使い方

Home String Methods

# rpartition()の例1

Search for the last occurrence of 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, bananas are my favorite fruit"x = txt.rpartition("bananas")
print(x)

# rpartition()の定義及び使い方

rpartition()関数は、 の最後のオカレンス を指定し、その文字列を3つの要素を含むタプルに分割する。 最初の要素には、指定した文字列の前の部分が含まれます。 2番目の要素には、指定した文字列が含まれます。 3番目の要素には、文字列の後の部分が含まれます。

# rpartition()の構文

string.rpartition(value)

# rpartition()の引数

パラメータ 説明

value:必須. The string to search for

# rpartition()の例2

If the specified value is not found, the rpartition() method returns a tuple 
  containing: 1 - the whole string, 2 - an empty string, 3 - an empty string:

    txt = "I could eat bananas all day, bananas are my favorite fruit"x = txt.rpartition("apples")
print(x)

Home String Methods