python去除字符串空格
时间: 2023-09-21 11:11:38 浏览: 86
Python去掉字符串中空格的方法
5星 · 资源好评率100%
您好,关于python去除字符串空格,您可以使用strip()函数来实现,具体方法为:
str.strip():去除字符串两端的空格
str.lstrip():去除字符串左侧的空格
str.rstrip():去除字符串右侧的空格
示例代码如下:
``` python
s = " hello world "
s.strip() # 去除两端空格,输出:'hello world'
s.lstrip() # 去除左空格,输出:'hello world '
s.rstrip() # 去除右空格,输出:' hello world'
```
希望对您有所帮助。
阅读全文