首页 > 代码库 > Python抓取页面乱码问题的解决

Python抓取页面乱码问题的解决

import urllib2response=urllib2.urlopen(http://house.focus.cn/)html=response.read()print html.decode(gbk)