Python rstrip()メソッドの例の詳細

673 ワード

Python文字列
説明
Python rstrip()string文字列の末尾の指定文字(デフォルトはスペース)を削除します.
構文
rstrip()メソッド構文:str.rstrip([chars])
パラメータ
chars�C削除する文字を指定します(デフォルトはスペース)
戻り値
string文字列の最後の指定文字を削除した後に生成された新しい文字列を返します.
≪インスタンス|Instance|emdw≫
次の例では、rstrip()関数の使用方法を示します.

#!/usr/bin/python
str = " this is string example…wow!!! ";
print str.rstrip();
str = “88888888this is string example…wow!!!8888888”;
print str.rstrip(‘8');

上記の例の出力結果は次のとおりです.
 this is string example....wow!!!
88888888this is string example…wow!!!
まとめ
以上、編集者がご紹介したPython rstrip()の方法の実例を詳しく説明しました.