Python抓取页面乱码问题的解决
时间:2014-06-27 00:50:29
收藏:0
阅读:333
import urllib2 response=urllib2.urlopen(‘http://house.focus.cn/‘) html=response.read() print html.decode(‘gbk‘)
评论(0)