python字符串去除空格
时间: 2023-07-24 22:06:38 浏览: 118
字符串去掉空格
可以使用 `strip()` 方法去除字符串两端的空格,也可以使用 `replace()` 方法将字符串中的空格替换为空字符。例如:
```python
s = ' hello world '
s = s.strip() # 去除两端空格
print(s) # 输出:'hello world'
s = ' hello world '
s = s.replace(' ', '') # 将空格替换为空字符
print(s) # 输出:'helloworld'
```
如果你想去除字符串中所有空格,而不仅仅是两端的空格,可以使用正则表达式来实现:
```python
import re
s = ' hello world '
s = re.sub(r'\s+', '', s) # 将所有空格替换为空字符
print(s) # 输出:'helloworld'
```
阅读全文