我有:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from urllib2 import urlopen
page2 = urlopen('http://pogoda.yandex.ru/moscow/').read().decode('utf-8')
page = urlopen('http://yasko.by/').read().decode('utf-8')
在“page ...”行中,我有错误“UnicodeDecodeError: 'utf8' codec can't decode byte 0xc3 in position 32: invalid continuation byte”,但在“page2 ...”行中没有错误,为什么?
从 yasko.by 中 32 的位置开始西里尔符号,我如何正确得到它?
谢谢!