rstrip()
优质
小牛编辑
128浏览
2023-12-01
描述 (Description)
方法rstrip()返回字符串的副本,其中所有chars都已从字符串末尾删除(默认空格字符)。
语法 (Syntax)
以下是rstrip()方法的语法 -
str.rstrip([chars])
参数 (Parameters)
chars - 你可以提供必须修剪的字符。
返回值 (Return Value)
此方法返回字符串的副本,其中所有字符都已从字符串末尾删除(默认空白字符)。
例子 (Example)
以下示例显示了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!!!