0
我無法獲取此splitted_page內的內容。我想要的只是標題,其內容爲"Sian Blake partner ..."
如何找到正確的python urllib2 splitted_page列表索引?
這是我的代碼。這似乎是打印的方式來多的信息比我需要
import urllib2
url="http://www.bbc.co.uk/news/uk-england-london-35412127"
request = urllib2.Request(url)
handle = urllib2.urlopen(request)
content = handle.read()
splitted_page = content.split("<h1 class=\"story-body\">");
splitted_page = splitted_page[0].split("</h1>")
print splitted_page[0]
謝謝。
非常感謝好友 –