python3.x中str,bytes类型相关转化

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3.x中str,bytes类型相关转化相关的知识,希望对你有一定的参考价值。

在研究Python3.x的过程中,遇到的一个纠结了我几天的问题:总是提示“a bytes-like object is required,not 'str' ”
在python3.x里增加了bytes类型,并且对str方法进行了修改,让str类型和bytes类型可以相互转换。



#!/usr/bin/env python
# -*- coding:utf-8 -*-

a = "哈哈"


#字符串转换成字节
b = bytes(a,encoding='utf-8')
print(b)
b1 = bytes(a,encoding='gbk')
print(b1)

#将字节转换成字符

c=str(b,encoding='utf-8')
print(c)

c1=str(b1,encoding='gbk')
print(c1)


以上是关于python3.x中str,bytes类型相关转化的主要内容,如果未能解决你的问题,请参考以下文章

Python3 中的 str 和 bytes

Python str / bytes / unicode 区别详解

python3.5 的str类型和bytes类型的转换

Day 3 python入门拾遗篇:bytes和str转化;三元运算;进制转化

Python中的字符串

a bytes-like object is required,not str'怎么解决?