decode 中文意思:解码 encode 中文意思:编码
# 申请一个字符串 data="你好世界!" # 把这个UTF-8格式的字符串编码成unicode码 data=data.encode("utf-8") # 把unicode码解码成Utf-8格式 data=data.decode("utf-8") print(data)
在Python中所有的编码转换,都是由 原编码--->unicode->目标编码
一定要注意的是,对于一个未知的编码,是先编码成unicode,然后解码成目标编码的 而不是正常人理解的,先解码然后编码
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did165537