1
我刮這個網站www.soundkartell.de
,並且我面臨着一些問題的Unicode:的Python 2.7.x - unicode的問題
results =[]
for article in soup.find_all('article'):
if article.select('a[href*="alternative"]'):
artist = article.h2.text
results.append(artist.encode('latin1').decode("utf-8"))
print artist # Din vän Skuggan
print results # [u'Din v\xe4n Skuggan']
我有-*- coding: utf-8 -*-
在我的文件的頂部。
爲什麼python打印正確的數據而不是附加的數據?
我該如何解決unicode問題?
我使用Python 2.7.x
另外,'de'是Deutschland(即德國)的國家代碼。丹麥是'dk'。 –