python Rstrip()方法
时间: 2023-11-21 16:50:58 浏览: 123
在Python中操作字符串之rstrip()方法的使用
Python中的rstrip()方法是用于删除字符串末尾的指定字符(默认为空格)。该方法返回一个新字符串,原字符串不会被修改。
例如,假设我们有一个字符串:
```
str = " hello world! "
```
我们可以使用rstrip()方法删除末尾的空格:
```
new_str = str.rstrip()
print(new_str) # 输出:" hello world!"
```
我们也可以指定要删除的字符:
```
str = "hello world!!!"
new_str = str.rstrip("!")
print(new_str) # 输出:"hello world"
```
注意,该方法只删除末尾的字符,而不会删除字符串中间的字符。
阅读全文