中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
尼勒克县| 句容市| 家居| 洛川县| 类乌齐县| 米林县| 望谟县| 从化市| 松原市| 阿瓦提县| 普定县| 平原县| 沙雅县| 盐源县| 香河县| 安阳县| 青铜峡市| 缙云县| 平利县| 牙克石市| 深圳市| 合川市| 门头沟区| 铜陵市| 宜阳县| 旺苍县| 绥阳县| 邵阳县| 镇平县| 喀喇沁旗| 额尔古纳市| 嫩江县| 常熟市| 栾城县| 临沧市| 周口市| 彩票| 四会市| 桓台县| 若羌县| 奉化市|