python 去掉\t \n
时间: 2023-07-12 13:54:05 浏览: 88
python: line=f.readlines()消除line中\n的方法
你可以使用字符串的`strip()`方法来去掉字符串两端的空白字符,包括`\t`和`\n`。如果你想去掉字符串中间的空白字符,可以使用字符串的`replace()`方法来替换。例如:
```python
s = '\t hello \n world \t'
s = s.strip() # 去掉两端空白字符
s = s.replace('\t', '').replace('\n', '') # 去掉中间的空白字符
print(s) # 输出:hello world
```
另外,还可以使用正则表达式来去掉空白字符。例如:
```python
import re
s = '\t hello \n world \t'
s = re.sub(r'\s+', '', s) # 去掉所有空白字符
print(s) # 输出:helloworld
```
阅读全文