encode 和 decode

Posted hale-wang

tags:

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

name = "张全蛋"
print(name.encode("utf-8"))
print(type(name.encode("utf-8")))

byte = name.encode("utf-8")
print(byte.decode("utf-8"))

# encode unicode - > utf-8    将unicode的字符 转为制定的二进制
# decode utf-8 - > unicode    将二进制转为unicode

 

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

探究 encode 和 decode 的使用问题(Python)

类型 '' 不符合协议 'Decodable'/'Encodable'

Java 使用URLEncoder.encode和URLDecoder.decode编解码(utf-8)中文及特殊字符

Python之encode与decode浅析

encode()和decode()编码与解码的解析常用编码与为何要encode和decode

python的encode()和decode()函数