求助python 爬下来的数据如何让其显示中文
# -*- coding: utf-8 -*-
import urllib2
import urllib
import re
import sys
import requests
user_agent = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2504.0 Safari/537.36'
headers = { 'User-Agent' : user_agent }
myurl="http://www.i4.cn/app_detail_147655.html"
req=urllib2.Request(myurl,headers = headers)
myResponse =urllib2.urlopen(req)
#myPage = myResponse.read()
# unicodePage = myPage.decode("utf-8")
#myPage = requests.get(myurl).content.decode("utf-8")
myItems=re.findall(r'<title>(.*?)</title>',myResponse.read().decode("utf-8"),re.S)
print myItems
raw_input(":")
这样输出的格式并不是中文。。编辑版本是python 2.7.5