【Python】Python中的rstrip方法使用详解
Python中的rstrip()方法用于删除字符串末尾指定的字符,默认情况下删除空格字符。
语法:string.rstrip([chars])
参数说明:
- chars:可选参数,指定要删除的字符集合,默认情况下删除空格字符。
返回值:返回一个新的字符串,该字符串已删除指定的字符。
示例:
str1 = "hello world "
str2 = str1.rstrip()
print(str2) # 输出结果为:hello world
str3 = "hello world!!!"
str4 = str3.rstrip("!")
print(str4) # 输出结果为:hello world
在上面的示例中,str1
末尾有多个空格字符,使用rstrip()
方法删除后得到新的字符串str2
,末尾的空格字符被删除了。str3
末尾有多个感叹号字符,使用rstrip("!")
方法删除后得到新的字符串str4
,末尾的感叹号字符被删除了。