python解析xml文件注意

python2.7 版本 无法解析xml gb2312的编码。
所有一般的做法为:

dstr = dstr.decode('gb2312').encode('utf-8')
dstr = dstr.replace('gb2312','utf-8')

来自 v2ex:
http://www.v2ex.com/t/136511

你可能感兴趣的:(python解析xml文件注意)