python 去掉字符串所有空格
时间: 2023-08-30 22:12:28 浏览: 117
可以使用字符串的 `replace()` 方法将空格替换成空字符串,从而去掉字符串中所有的空格,例如:
```python
s = " hello world "
s = s.replace(" ", "")
print(s) # 输出 "helloworld"
```
另外,如果字符串中包含制表符 `\t` 或换行符 `\n` 等空白字符,也可以通过类似的方法将它们去掉,例如:
```python
s = " hello\n\tworld "
s = s.replace(" ", "").replace("\t", "").replace("\n", "")
print(s) # 输出 "helloworld"
```
需要注意的是,这种方法只能去掉字符串中的空格,如果要去掉其他字符,可以使用 `replace()` 方法替换成空字符串,或者使用正则表达式来匹配和替换。
相关问题
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
```
阅读全文