您好,登錄后才能下訂單哦!
了解python爬蟲中l(wèi)xml怎樣測(cè)試?這個(gè)問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個(gè)問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
代碼:
from lxml import etree html = etree.parse('hello.html') print type(html) result = html.xpath('//li') print result print len(result) print type(result) print type(result[0])
運(yùn)行結(jié)果
<type 'lxml.etree._ElementTree'> [<Element li at 0x1014e0e18>, <Element li at 0x1014e0ef0>, <Element li at 0x1014e0f38>, <Element li at 0x1014e0f80>, <Element li at 0x1014e0fc8>] 5 <type 'list'> <type 'lxml.etree._Element'>
可見,etree.parse 的類型是 ElementTree,通過調(diào)用 xpath 以后,得到了一個(gè)列表,包含了 5 個(gè)
元素,每個(gè)元素都是 Element 類型 (2)獲取
標(biāo)簽的所有 class
result = html.xpath('//li/@class') print result
運(yùn)行結(jié)果
['item-0', 'item-1', 'item-inactive', 'item-1', 'item-0']
感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)python爬蟲中l(wèi)xml怎樣測(cè)試大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。