📅  最后修改于: 2023-12-03 14:46:38.921000             🧑  作者: Mango
rstrip
rstrip()
是Python中的一个字符串方法,用于移除字符串末尾的指定字符(默认为空格)或字符集合。下面是对该方法的详细介绍。
str.rstrip([chars])
chars
(可选):指定要移除的字符或字符集合。string = " Hello World "
new_string = string.rstrip()
print(new_string) # 输出: Hello World
string = " Hello World$$$"
new_string = string.rstrip("$")
print(new_string) # 输出: Hello World
string = " Hello World#$#"
new_string = string.rstrip("#$")
print(new_string) # 输出: Hello World
rstrip()
方法只会移除字符串末尾的字符,而不会修改字符串开头的字符。rstrip()
方法。rstrip()
方法返回一个新字符串,原始字符串不会被修改。如果需要修改原始字符串,请使用赋值操作符(如 string = string.rstrip()
)。以上是关于Python中rstrip()
方法的介绍。该方法在字符串处理中非常有用,希望对您有帮助!