python 删除字符串中的空格
时间: 2023-09-13 14:10:48 浏览: 118
在 Python 中,你可以使用字符串的 `replace()` 方法来删除字符串中的空格。具体代码如下:
```python
my_string = " hello world "
new_string = my_string.replace(" ", "")
print(new_string)
```
这段代码会将原字符串中的所有空格替换成空字符串,从而删除所有空格。输出结果为:
```
helloworld
```
相关问题
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表示匹配任意空白字符,包括空格、制表符和换行符等;+表示匹配前面的字符一次或多次。
python去除字符串首尾空格
可以使用strip()函数来去除字符串首尾空格,例如:
```
str = " hello world "
new_str = str.strip()
print(new_str)
```
输出结果为:
```
hello world
```
阅读全文