from __future__ import unicode_literals
#-*-coding:utf-8-*-
import requests
from bs4 import BeautifulSoup
res = requests.get('http://news.sina.com.cn/china/')
res.encoding='utf-8'
soup=BeautifulSoup(res.text,'html.parser')
for news in soup.select('.news-item'):
if len(news.select('h2'))>0:
h2=news.select('h2')[0].text
a=news.select('a')[0]['href']
test = str((h2, a))
print(test.decode("unicode-escape"))
試試不用元組
應該還是遺留的編碼問題
print的時候實際上呼叫了tuple的__str__()
編碼方式不同造成,windows平台的編碼一般是gbk過著isoxxx,查閱一下web的編碼方式(chrome可查閱),然後將編碼轉為系統一致就ok了
其實單獨輸出h2是可以輸出中文的,非要向你那樣輸出元組的話,參考下面程式碼
遇到編碼問題,還要是理解編碼的歷史淵源是是什麼,可以看看這篇文章, http://foofish.net/python-cha... 以後遇到編碼了就知道如何分析問題了。
python3
u''開頭說明已經是unicode了,編碼沒有問題,只是你print的方式有問題,2.7的話改成這樣應該就沒問題了
唸出來之後 直接轉換成字串就可以了
印(h2 + a)