bytes与str(encode,decode)

Posted

tags:

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

#str(文本Unicide) 与bytes(二进制字节)互相转换。。。。这是2个不同类型数据!!
goood="我 is 死的"
print(goood,type(goood))
print(goood.encode(encoding="utf-8"))#字符串str数据用encode转换成字节bytes数据
print(goood.encode(encoding="utf-8").decode("utf-8"))# bytes用decode转换成str

str # 是字符串
name="永不言败" #字符串类型
print(type(name))
print(name.encode())
print(name.encode().decode())

bytes # 是字节(字节只能包含ASCII文字字符)
name2=b‘abcd‘
print(type(name2))
print(name2.decode())
print(name2.decode().encode())

以上是关于bytes与str(encode,decode)的主要内容,如果未能解决你的问题,请参考以下文章

encode,decode,str to bytes

python str与bytes编码解码

2python自学之路-数据类型之decode与encode

解决编码问题:AttributeError: 'str' object has no attribute 'decode'

python基础——编码、bytes与str转换及格式化

byte类型