Python 字符串 rstrip() 方法

实例

删除字符串右边的空格:

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

定义和用法

rstrip() 方法删除所有结尾字符(字符串末尾的字符),空格是要删除的默认结尾字符。


语法

  1. string.rstrip(characters)
参数值
参数描述
characters可选。一组作为结尾字符要删除的字符。

更多实例

删除结尾字符:

  1. txt = "banana,,,,,ssqqqww....."
  2. x = txt.rstrip(",.qsw")
  3. print(x)

分类导航