Python将bytes类型转换成string类型的方法
""" 皮蛋编程(https://www.pidancode.com) 创建日期:2022/4/4 功能描述:Python将bytes类型转换成string类型的方法 """ print(b'Pidancode.com \xE2\x9C\x85'.decode("utf-8"))
输出结果:
pidancode.com ✅
使用bytes类型自带的 decode()方法,你可以将bytes 转换成 string. 这断代码我们使用utf-8将bytes转为string,其中 \xE2\x9C\x85 下面这个符号的 utf-8 代码: ✅
相关文章