python 去掉字符串所有空格
时间: 2023-08-30 12:12:28 浏览: 115
Python去掉字符串中空格的方法
5星 · 资源好评率100%
可以使用字符串的 `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()` 方法替换成空字符串,或者使用正则表达式来匹配和替换。
阅读全文