python去除字符串所有空格
时间: 2023-05-31 19:05:37 浏览: 98
Python去掉字符串中空格的方法
5星 · 资源好评率100%
可以使用字符串的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表示匹配任意空白字符,包括空格、制表符和换行符等;+表示匹配前面的字符一次或多次。
阅读全文