Python Encoding

by Yan Sheng

str vs unicode

出现错误:

UnicodeDecodeError: 'ascii' codec can't decode byte 0xe5 in position 0: ordinal not in range(128)
...

原因:

混淆了 python2 里边的 str 和 unicode 数据类型。。。

解决方法:

参考链接:

Python