python bytes转str 有\n
时间: 2024-03-12 11:47:28 浏览: 161
Python3中内置类型bytes和str用法及byte和string之间各种编码转换 问题
可以使用bytes对象的decode()方法将其转换为字符串,然后再使用字符串的replace()方法将"\n"替换为换行符,例如:
```
b = b'hello\nworld'
s = b.decode('utf-8').replace('\n', '\n')
print(s)
```
输出结果为:
```
hello
world
```
阅读全文