python 去掉字符串中的空格
时间: 2023-09-04 15:12:48 浏览: 97
要去掉字符串中的空格,你可以使用 Python 的 `replace()` 方法。你可以将空格字符替换为空字符串,即可实现去除空格的效果。以下是一个示例代码:
```python
string = "Hello, World!"
string_without_spaces = string.replace(" ", "")
print(string_without_spaces)
```
输出结果为:"Hello,World!",字符串中的空格已被去除。
相关问题
python去除字符串首尾空格
可以使用strip()函数来去除字符串首尾空格,例如:
```
str = " hello world "
new_str = str.strip()
print(new_str)
```
输出结果为:
```
hello world
```
python去除字符串所有空格
可以使用字符串的replace()方法,将空格替换为空字符串。
例如:
```
s = " hello world "
s = s.replace(" ", "")
print(s) # 输出"helloworld"
```
另外,也可以使用正则表达式re模块的sub()方法,将匹配到的空格替换为空字符串。
例如:
```
import re
s = " hello world "
s = re.sub(r"\s+", "", s)
print(s) # 输出"helloworld"
```
其中,\s表示匹配任意空白字符,包括空格、制表符和换行符等;+表示匹配前面的字符一次或多次。
阅读全文