例如:
删除字符串末尾的所有空格:
txt = " banana "
x = txt.rstrip()
print("of all fruits", x, "is my favorite")
1、定义和用法
rstrip()
方法删除所有结尾字符(字符串末尾的字符),默认要删除的字符是空格" "。
2、调用语法
string.rstrip(characters)
3、参数说明
参数 | 描述 |
characters | 可选的。要删除作为尾随字符的一组字符的集合 |
4、使用示例
例如:
如果末尾字符是,
、s
、q
或w
,则删除它们:
txt = "banana,,,,,ssqqqww....."
x = txt.rstrip(",.qsw")
print(x)