Home  >  Article  >  Backend Development  >  Python's Chinese characters are garbled

Python's Chinese characters are garbled

巴扎黑
巴扎黑Original
2016-12-09 11:21:071610browse

I plan to use Python to parse network log files.

Inevitably encountered the problem of garbled Chinese characters.

My little brother used to learn Java and I really don’t know how to start using Python to solve the problem of Chinese garbled characters.

The code that passed debugging in Java made me angry when placed in Python environment.

After a lot of effort, the problem was finally solved with the help of an Oschina.

The main ideas of Python encoding are:

1. String

2. Unicode

3. Target encoding set (CP936, GB2312, GBK, GB18030 seems to be directly converted to each other, most of the encodings are the same)

To understand the structure of Python’s system coding, first look at the following piece of code:

import locale 
  
def p(f): 
    print '%s.%s(): %s' % (f.__module__, f.__name__, f()) 
  
# 返回当前系统所使用的默认字符编码 
p(sys.getdefaultencoding) 
  
# 返回用于转换Unicode文件名至系统文件名所使用的编码 
p(sys.getfilesystemencoding) 
  
# 获取默认的区域设置并返回元祖(语言, 编码) 
p(locale.getdefaultlocale) 
  
# 返回用户设定的文本数据编码 
# 文档提到this function only returns a guess 
p(locale.getpreferredencoding) 
  
# \xba\xba是'汉'的GBK编码 
# mbcs是不推荐使用的编码,这里仅作测试表明为什么不应该用 
print r"'\xba\xba'.decode('mbcs'):", repr('\xba\xba'.decode('mbcs')) 
  
#在笔者的Windows上的结果(区域设置为中文(简体, 中国)) 
#sys.getdefaultencoding(): gbk 
#sys.getfilesystemencoding(): mbcs 
#locale.getdefaultlocale(): ('zh_CN', 'cp936') 
#locale.getpreferredencoding(): cp936 
#'\xba\xba'.decode('mbcs'): u'\u6c49'


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn