python去除字符串左侧的空白符
时间: 2023-07-24 22:23:03 浏览: 89
Python去掉字符串中空格的方法
5星 · 资源好评率100%
可以使用字符串的lstrip()方法来去除左侧的空白符,示例如下:
```python
s = " hello world"
s = s.lstrip()
print(s) # 输出: "hello world"
```
lstrip()方法会返回去除左侧空白符后的新字符串,原字符串并不会被修改。
阅读全文
Python去掉字符串中空格的方法