python去除字符串右边空白符
时间: 2023-09-22 07:12:05 浏览: 91
Python 专题三 字符串的基础知识
可以使用字符串的rstrip()方法去除右边的空白符,例如:
```python
s = " hello world "
s = s.rstrip()
print(s) # 输出 " hello world"
```
如果想删除指定字符,可以在rstrip()方法中传入需要删除的字符,例如:
```python
s = " hello world! "
s = s.rstrip("!")
print(s) # 输出 " hello world "
```
阅读全文