python如何去除字符串两边的空格
时间: 2023-09-24 08:03:35 浏览: 108
Python去除字符串两端空格的方法
在Python中,可以使用字符串的`strip()`方法来去除字符串两边的空格。示例代码如下:
```python
s = ' hello, world! '
s = s.strip()
print(s)
```
输出结果为:
```
'hello, world!'
```
`strip()`方法可以去除字符串两边的空格,如果想去除左边或右边的空格,可以使用`lstrip()`或`rstrip()`方法。
阅读全文