字符串去除空格
时间: 2023-07-25 19:04:51 浏览: 72
Python去掉字符串中空格的方法
5星 · 资源好评率100%
可以使用 Python 中的 `replace()` 方法来去除字符串中的空格。例如:
```python
string_with_spaces = " hello world "
string_without_spaces = string_with_spaces.replace(" ", "")
print(string_without_spaces)
```
输出结果为:
```
helloworld
```
如果你想去除字符串两端的空格,可以使用 `strip()` 方法:
```python
string_with_spaces = " hello world "
string_without_spaces = string_with_spaces.strip()
print(string_without_spaces)
```
输出结果为:
```
hello world
```
阅读全文