まぬねこの足跡。。。

備忘録+たのしさ+ひっそりと

Python - str.rstrip([chars]):文末 除去

概要

str.rstrip([chars])

str:除去される文字列
chars:除去する文字列。省略時、空白。

  • 文末 除去
  • 組込み型 文字列メソッド

実行結果

print(" abcde "  .rstrip())
print("     abcde   ".rstrip())
print("####abcde####".rstrip('#'))
print("#-#-abcde#-#-"  .rstrip('#-'))

表示イメージ

 abcde
     abcde
####abcde
#-#-abcde