# -*- coding: utf-8 -*-
from lxml import etree
h_3 = etree.HTML(t_1)#將xml內(nèi)容 格式化
n_2 = h_3.xpath('//text()')#定位 所有的文字內(nèi)容
注意:要定位需要的內(nèi)容時路徑前面要加 /html/body/
如 :n_2 = h_3.xpath('/html/body/listordersresponse/listordersresult/orders/order[1]/latestshipdate/text()')
還有要把路徑中的所有大寫改為小寫
print(n_2)#打印定位到的內(nèi)容