python 字符串去\n
时间: 2023-11-30 21:02:59 浏览: 122
可以使用字符串的 `replace` 方法来去掉换行符 `\n`,例如:
```python
str_with_newline = "Hello,\nworld!"
str_without_newline = str_with_newline.replace('\n', '')
print(str_without_newline) # 输出:Hello,world!
```
也可以使用正则表达式模块 `re` 来去掉换行符 `\n`,例如:
```python
import re
str_with_newline = "Hello,\nworld!"
str_without_newline = re.sub(r'\n', '', str_with_newline)
print(str_without_newline) # 输出:Hello,world!
```
阅读全文