将字符串的空格删去
时间: 2023-09-12 21:05:12 浏览: 123
字符串去掉空格
好的,您可以使用以下Python代码将字符串中的空格删除:
```python
string = "This is a string with spaces"
new_string = string.replace(" ", "")
print(new_string)
```
这将输出:
```
Thisisastringwithspaces
```
请注意,这只是一种方法,具体取决于您要解决的问题。
阅读全文