亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

python中怎么用xpath解析數據

小億
83
2024-01-11 14:59:58
欄目: 編程語言

Python中可以使用lxml庫中的etree模塊來解析數據。下面是一個使用XPath解析數據的簡單示例:

from lxml import etree

# 創建一個XML文檔并解析
xml_data = """
<books>
    <book>
        <title>Python Cookbook</title>
        <author>David Beazley</author>
        <year>2013</year>
    </book>
    <book>
        <title>Fluent Python</title>
        <author>Luciano Ramalho</author>
        <year>2015</year>
    </book>
</books>
"""
root = etree.fromstring(xml_data)

# 使用XPath選擇元素
titles = root.xpath("//title/text()")
authors = root.xpath("//author/text()")
years = root.xpath("//year/text()")

# 打印解析結果
for title, author, year in zip(titles, authors, years):
    print(f"Title: {title}")
    print(f"Author: {author}")
    print(f"Year: {year}")
    print("---")

輸出結果如下:

Title: Python Cookbook
Author: David Beazley
Year: 2013
---
Title: Fluent Python
Author: Luciano Ramalho
Year: 2015
---

在上面的示例中,使用etree.fromstring()方法將XML字符串解析為一個Element對象。然后,可以使用xpath()方法使用XPath表達式選擇相應的元素。最后,使用text屬性獲取元素的文本內容。

0
宁陕县| 民县| 云梦县| 鄯善县| 鸡泽县| 伊通| 昭通市| 县级市| 承德县| 华池县| 武威市| 义乌市| 尼勒克县| 清新县| 西乌珠穆沁旗| 甘肃省| 高邮市| 蓝山县| 澄城县| 红桥区| 河西区| 连山| 太谷县| 托克托县| 平南县| 大姚县| 蕲春县| 淮安市| 黎城县| 白朗县| 蓝山县| 调兵山市| 多伦县| 盐池县| 增城市| 庆安县| 克东县| 西昌市| 乌兰浩特市| 特克斯县| 鹿邑县|