摘要:
对于 Python 2.X: import sys reload(sys) sys.setdefaultencoding("utf-8") 1 2 3 对于 <= Python 3.3: import imp imp.reload(sys) 1 2 注意: 1. Python 3 与 Python 阅读全文
摘要:
最近用Python写了些爬虫,在爬取一个gb2312的页面时,抛出异常: UnicodeEncodeError: 'ascii' codec can't encode characters in position 21-23: ordinal not in range(128) 解决方案如下: 首先 阅读全文