python编码转换

python编码转换

把其他编码转换为unicode,比如转换utf-8编码:

unicode_text = unicode(utf8_text, 'utf-8')

unicode编码转换为其他编码,比如gb18030编码:

gb18030_text = unicode_text.encode('gb18030')

以上两者结合,可以转换utf-8gb18030编码:

gb18030_text = unicode(utf8_text, 'utf-8').encode('gb18030')

对于Windows平台,如果要转换到ANSI(简体中文就是gb18030,繁体中文big5,…)则可以使用mbcs编码(mbcs即:Multi-Byte Character Set):

mbcs_text = unicode(utf8_text, 'utf-8').encode('mbcs')

参考文档:

  1. 字符编码和python使用encode,decode转换utf-8, gbk, gb2312 - jxzheng - 博客园
  2. 解决UnicodeEncodeError: ‘ascii’ codec can’t encode characters in position 0-3问题 - mingaixin - 博客园
  3. 【已解决】UnicodeEncodeError: ‘gbk’ codec can’t encode character u’\u200e’ in position 43: illegal multibyte sequence | 在路上
  4. Python, Windows, Ansi - encoding, again - Stack Overflow
  5. 4.9.2 Standard Encodings
  6. 28.1. sys — System-specific parameters and functions — Python 2.7.13 documentation

你可能感兴趣的:(python,python,encoding,utf-8,unicode,编码)