码迷,mamicode.com
首页 > 其他好文 > 详细

解决 ElementTree 无法处理中文

时间:2017-08-31 21:39:19      阅读:1899      评论:0      收藏:0      [点我收藏+]

标签:line   https   comment   table   修改   title   entry   har   mouse   

解决 ElementTree 无法处理中文,UnicodeEncodeError: ‘ascii’ codec can’t encode characters in position 76-99: ordinal not in range(128)

ET.fromstring 传进去 unicode 字符串提示 UnicodeEncodeError: ‘ascii’ codec can’t encode characters in position 76-99: ordinal not in range(128)。

encode(‘utf-8′) 后传进去提示 ValueError: multi-byte encodings are not supported,不支持多字节编码。

python 的中文支持真是头痛,这个如果用 sys.setdefaultencoding=’utf-8’ 可以解决,但是觉得直接为了这个直接修改了全局编码不太好,最后发现可以用如下代码解决:

https://gist.github.com/GameXG/89b92a9a94456ff2da85

解决 ElementTree 无法处理中文

标签:line   https   comment   table   修改   title   entry   har   mouse   

原文地址:http://www.cnblogs.com/alapha/p/7460611.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!