Python 3 – 字符串 rstrip() 方法
描述
rstrip() 方法返回字符串副本,其中所有字符都已从字符串的末尾删除(默认为空格字符)。
语法
以下是 rstrip() 方法的语法−
str.rstrip([chars])
参数
chars − 您可以提供要修剪的字符。
返回值
此方法返回字符串副本,其中所有字符都已从字符串的末尾删除(默认为空格字符)。
示例
以下示例显示了 rstrip() 方法的用法。
#!/usr/bin/python3
str = " this is string example....wow!!! "
print (str.rstrip())
str = "*****this is string example....wow!!!*****"
print (str.rstrip('*'))
结果
运行以上程序时,将生成以下结果−
this is string example....wow!!!
*****this is string example....wow!!!