0
我特林提取JB Hi-Fi spcify信息,這裏是我做過什麼:數據提取和重新
from BeautifulSoup import BeautifulSoup
import urllib2
import re
url="http://www.jbhifionline.com.au/support.aspx?post=1&results=10&source=all&bnSearch=Go!&q=ipod&submit=Go"
page=urllib2.urlopen(url)
soup = BeautifulSoup(page.read())
Item0=soup.findAll('td',{'class':'check_title'})[0]
print (Item0.renderContents())
輸出爲:
Apple iPod Classic 160GB (Black)Â
<span class="SKU">MC297ZP/A</span>
我要的是:
Apple iPod Classic 160GB (Black)
,我試圖重新使用去除其他信息
print(Item0.renderContents()).replace{^<span:,""}
,但它沒有工作
所以我的問題是我怎麼能去除無用信息,並獲得「蘋果iPod的經典160GB(黑色)」