#!/usr/bin/env python
# -*- coding: utf-8 -*-
from urllib2 import urlopen
page = urlopen('http://yasko.by/').read().decode('utf-8')
page2 = urlopen('http://pogoda.yandex.ru/moscow/').read().decode('utf-8')
в строке с page , ошибка “UnicodeDecodeError: ‘utf8’ codec can't decode byte 0xc3 in position 32: invalid continuation byte”, тем не менее в строке с page2 - все нормально… как так получается?, спасибо.