python字符串中如何去除空格
时间: 2023-12-13 08:02:39 浏览: 62
Python去掉字符串中空格的方法
5星 · 资源好评率100%
可以使用字符串的 `strip()` 方法去除字符串中的空格,该方法会去除字符串开头和结尾的空格。例如:
```python
s = " hello world "
s = s.strip()
print(s) # 输出:hello world
```
如果要去除字符串中间的空格,可以使用字符串的 `replace()` 方法,将空格替换为空字符串即可。例如:
```python
s = "hello world"
s = s.replace(" ", "")
print(s) # 输出:helloworld
```
另外,如果要去除特定位置的空格,可以使用字符串的切片操作,将需要去除的空格从字符串中切掉。例如:
```python
s = "hello world"
s = s[:5] + s[10:]
print(s) # 输出:hello world
```
阅读全文