# Python CodeRecipe|strip()の使い方

Home String Methods

# strip()の例1

Remove spaces at the beginning and at the end of the string:

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

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

strip()関数は、行送りをすべて削除します。 (末尾のスペース)および末尾の(先頭のスペース)文字(スペースは、削除するデフォルトの先頭文字です。)

# strip()の構文

string.strip(characters)

# strip()の引数

パラメータ 説明

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

# strip()の例2

Remove the leading and trailing characters:

    txt = ",,,,,rrttgg.....banana....rrr"x = txt.strip(",.grt")
    print(x)

Home String Methods