python中rstrip函数的用法
时间: 2023-09-17 15:11:19 浏览: 65
在Python中操作字符串之rstrip()方法的使用
在Python中,`rstrip()`函数是一个字符串方法,用于删除字符串末尾的指定字符(默认为空格字符)。
`rstrip()`函数不会修改原始字符串,而是返回一个新字符串,因此你需要将其分配给一个变量或打印出来,以便使用修改后的字符串。
以下是`rstrip()`函数的基本用法示例:
```python
string = " hello world "
new_string = string.rstrip() # 删除空格字符
print(new_string) # 输出 " hello world"
```
你还可以指定要删除的特定字符。例如,要删除字符串末尾的所有字母 `o`,你可以将其作为参数传递给`rstrip()`函数:
```python
string = "hello worldooo"
new_string = string.rstrip('o')
print(new_string) # 输出 "hello world"
```
希望这可以帮助你理解`rstrip()`函数的用法。
阅读全文