'ascii' codec can't decode byte 0xe0(报错解决)

遇到过多次编码错误,最常遇到的就是下面这个:

“UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xe4 in position 0: ordinal not in range(128)“
首先了解unicode和utf-8
unicode指的是万国码 是一种”字码表” 而utf-8是这种字码表储存的编码方法,编成bytecode储存,unicode还可以编码utf-16,utf-7等其他方式

  Python中字符串类型分为两种型态:byte string、unicode string

  设定了“ #coding=utf-8”后所有带有中文的都会被宣告为utf-8的byte string,但是,在函数中所产生的字符串,又会是unicode string

  其实两者都能表示中文,但是不代表能够混用,混用就会出错

  例如:

   response.out.write("你好"+request.get("argu"))

  中文字符“你好”会被宣告为byte string,而request.get()的结果是unicode string

  Python会自动常识把前面的“你好”转为unicode

  但是预设的解码器是ascii,所以转换不出来,就报了上面的错误

  UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xe4 in position 0: ordinal not in range(128)

一劳永逸的解决方法
综上所述,所以解决方法有3种

全部转为byte string (response.out.write(“你好”+request.get(“argu”).encode(‘utf-8’)))
全部转为unicode string (response.out.write(u”你好”+request.get(“argu”)))
更改设定预设解码器为utf-8
此种更改统一编码方法,在源文件或代码第一行添加
方式一: # coding=utf-8
方式二: 此方法最流行
#!/usr/bin/python
# -- coding: utf-8 --

重点:不在第一、第二行无法生效

一、单项处理

在报错的页面添加代码:
import sys
reload(sys)
sys.setdefaultencoding(‘utf8’)

二、全部处理
用命令(python setup.py install)安装webpy时候或运行代码时报错

  1. 这是Python 2 mimetypes的bug
  2. 需要将Python2.7/lib/mimetypes.py文件中如下片段注释或删除:

try:
ctype = ctype.encode(default_encoding) # omit in 3.x!
except UnicodeEncodeError:
pass

补充其它解决办法
解决办法:

在Python2.7/lib/mimetypes.py中添加代码:

import sys
reload(sys)
sys.setdefaultencoding(‘utf8’)

执行 Python ez_setup.py,报错:
UnicodeDecodeError: ‘utf8’ codec can’t decode byte 0xb0 in position 35: invalid
start byte

解决办法:
在报错的页面添加代码:

import sys
reload(sys)
sys.setdefaultencoding(‘gb18030’)

然后再执行 Python ez_setup.py,成功了

你可能感兴趣的:('ascii' codec can't decode byte 0xe0(报错解决))