python replace 去掉 \r \n \r\n
时间: 2023-09-09 07:07:19 浏览: 412
python按行读取文件,去掉每行的换行符\n的实例
可以使用字符串的replace()方法,将"\r"、"\n"和"\r\n"替换为空字符串即可。
示例代码:
```
text = "Hello\r\nWorld!\r\n"
text = text.replace("\r", "").replace("\n", "")
print(text)
```
输出结果:
```
HelloWorld!
```
阅读全文