python rstrip函数
时间: 2023-11-14 13:08:33 浏览: 128
Python 常用string函数详解
Python中的rstrip()函数是用来删除字符串末尾的指定字符(默认为空格)的。该函数返回一个新的字符串,原字符串不会被修改。
例如,我们有一个字符串s = "hello world ",其中末尾有三个空格。我们可以使用rstrip()函数来删除这些空格:
```
s = "hello world "
s = s.rstrip()
print(s) # 输出 "hello world"
```
阅读全文