# Python CodeRecipe|rstrip()の使い方

Home String Methods

# rstrip()の例1

Remove spaces to the right of the string:

    txt = "     banana     "x = 
    txt.rstrip()
    print("of all fruits", x, "is my favorite")

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

rstrip()関数は、末尾の 文字(文字列の末尾の文字)、スペースはデフォルトの末尾 削除する文字。

# rstrip()の構文

string.rstrip(characters)

# rstrip()の引数

パラメータ 説明

characters オプション. A set of characters to remove as trailing characters

# rstrip()の例2

Remove the trailing characters:

    txt = "banana,,,,,ssaaww....."x = txt.rstrip(",.asw")
    print(x)

Home String Methods