轻松上手,快乐学习!

Python 字符串 rstrip() 方法


实例

删除字符串右侧的空格:
txt = "     banana     "

x = txt.rstrip()

print("of all fruits", x, "is my favorite")
运行示例»

定义和用法

rstrip()方法删除任何结尾字符(字符串末尾的字符),结尾的空格默认被删除。

语法

string.rstrip(characters)

参数值

参数 描述
characters 可选项。 要作为尾随字符删除的一组字符

更多例子

实例

删除尾随字符:
txt = "banana,,,,,ssaaww....."

x = txt.rstrip(",.asw")

print(x)
运行示例»