python 去除首尾空字符
时间: 2023-06-06 10:06:37 浏览: 103
Python切片操作去除字符串首尾的空格
5星 · 资源好评率100%
您好!感谢您的提问。针对您的问题,可以使用 strip() 方法去除字符串首尾空格,例如:
```python
str = " hello world "
print(str.strip()) # 输出 "hello world"
```
同时,除了 strip() 方法之外,还有 lstrip() 方法和 rstrip() 方法可以分别去除字符串左侧和右侧的空格。希望这可以帮助到您,有任何问题都可以继续问我哦!
阅读全文