我正在尝试从存档的 web crawl中打印一个字符串,但是当我这样做时,我收到了这个错误:
print page['html']
UnicodeEncodeError: 'ascii' codec can't encode character u'\xe7' in position 17710: ordinal not in range(128)
当我尝试打印时unicode(page['html'])
,我得到:
print unicode(page['html'],errors='ignore')
TypeError: decoding Unicode is not supported
知道如何正确编码这个字符串,或者至少让它打印吗?谢谢。