python rstrip()
时间: 2023-11-14 16:10:05 浏览: 136
Python rstrip()方法实例详解
Python中的rstrip()方法用于删除字符串末尾的指定字符(默认为空格)。该方法返回一个新字符串,原字符串不变。
例如,假设我们有一个字符串"hello world ",其中末尾有三个空格。我们可以使用rstrip()方法删除这些空格:
```
s = "hello world "
s = s.rstrip()
print(s) # 输出 "hello world"
```
如果我们想删除末尾的其他字符,可以将其作为参数传递给rstrip()方法。例如,如果我们想删除末尾的所有逗号,我们可以这样做:
```
s = "hello, world,,,"
s = s.rstrip(",")
print(s) # 输出 "hello, world"
```
阅读全文