标签:编码格式 decode 目标 字符串 pytho 方法 导致 code coding
1 #python2上所有的字符编码都需要先decode到unicode,再从unicode encode到目标编码 2 str_utf8 = "我就是我" 3 print("str_utf-8:我就是我:",str_utf8) 4 #将utf-8转换为unicode 5 str_utf8_to_unicode = str_utf8.decode("utf-8") 6 print(str_utf8_to_unicode) 7 #将unicode转换为gbk 8 str_utf8_to_unicode_to_gbk = str_utf8_to_unicode.encode("gbk")
上述程序的print是否能够正常显示和运行终端的编码也有关系
1 #!/usr/bin/env python 2 # _*_ coding:utf-8 _*_ 3 #字符串与二进制的转换只是存储方式的变化,不涉及编码方式的修改,每次encode/decode都需要指定对应字符串的编码格式 4 str1 = "我就是我" 5 #字符串转换为二进制,使用encode。此处编码格式需要与字符串原有编码格式一致,否则在python3上会进行转码操作 6 str1_byte = str1.encode(encoding="utf-8") 7 #二进制转换为字符串,使用decode,此处二进制的编码格式如果填写错误可能会导致二进制无法转换为字符串,导致程序报错 8 byte_str1 = str1_byte.decode(encoding="utf-8") 9 print(str1,str1_byte,byte_str1)
1 #!/usr/bin/env python 2 # _*_ coding:utf-8 _*_ 3 #python3上默认编码是unicode是不需要进行解码这一步,文件头声明-*- coding:gbk -*-只是文件自身的编码,程序里面字符串变量还是unicode, 4 str2_utf8 = "我就是我" 5 #python3上str2_utf8默认是unicode编码(字符串本身直接无decode方法),直接encode到对应到编码,同时python3会将其转换为byte类型 6 str2_utf8_to_gbk = str2_utf8.encode(encoding="gbk") 7 #打印我就是我的gbk编码byte类型 8 print(str2_utf8_to_gbk) 9 #打印我就是我的gbk编码byte类型对应的字符串,只要指定正确的编码类型,也能正确转换为字符串 10 print(str2_utf8_to_gbk.decode(encoding="gbk")) 11 #打印我就是我utf-8编码byte类型,转换byte类型将其encode为自身的utf-8类型即可 12 str2_utf8_to_utf8_byte = str2_utf8.encode(encoding="utf-8") 13 print(str2_utf8_to_utf8_byte) 14 #将我就是我gbk类型转换为utf-8,由于编码转换需要unicode作为中间媒介,先将gbk编码decode至unicode,在将其encode至utf-8; 15 # python在encode是会将其转换为byte类型,所以其输出与str2_utf8_to_utf8_byte打印值一致,如需将其转换为字符串则对其进行自身编码的decode 16 print(str2_utf8_to_gbk.decode(encoding="gbk").encode(encoding="utf-8")) 17 #将二进制的utf-8转换为字符串 18 print(str2_utf8_to_gbk.decode(encoding="gbk").encode(encoding="utf-8").decode("utf-8"))
结果:
b‘\xce\xd2\xbe\xcd\xca\xc7\xce\xd2‘
我就是我
b‘\xe6\x88\x91\xe5\xb0\xb1\xe6\x98\xaf\xe6\x88\x91‘
b‘\xe6\x88\x91\xe5\xb0\xb1\xe6\x98\xaf\xe6\x88\x91‘
我就是我
划重点:
python3中相比于python的decode除了将原有编码转换为unicode功能外还增加将byte转换为字符串功能;encode除了将unicode转换为对应编码格式外还增加了将字符串转换为byte类型的功能
标签:编码格式 decode 目标 字符串 pytho 方法 导致 code coding
原文地址:https://www.cnblogs.com/flags-blog/p/11823946.html