一段代码python去除字符串中所有的空格
时间: 2024-12-18 19:35:58 浏览: 1
Python去除字符串两端空格的方法
在Python中,你可以使用`replace()`函数或者`join()`函数配合`split()`函数来去除字符串中的所有空格。以下是两种常见方法:
1. 使用 `replace()` 函数:
```python
def remove_spaces(s):
return s.replace(" ", "")
string_with_spaces = "Hello World!"
new_string = remove_spaces(string_with_spaces)
```
在这个例子中,`replace(" ", "")` 将字符串中的每个空格替换为空。
2. 使用 `split()` 和 `join()` 函数:
```python
def remove_spaces(s):
return ''.join(s.split())
string_with_spaces = "Hello World!"
new_string = remove_spaces(string_with_spaces)
```
这里,`split()` 将字符串分割成单词列表,去掉空格,然后 `join()` 把它们连接起来形成新的字符串。
阅读全文