久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

使用 Python 2 在 XML 中按屬性查找所有節點

Find all nodes by attribute in XML using Python 2(使用 Python 2 在 XML 中按屬性查找所有節點)
本文介紹了使用 Python 2 在 XML 中按屬性查找所有節點的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我有一個 XML 文件,其中包含許多具有相同屬性的不同節點.

I have an XML file which has a lot of different nodes with the same attribute.

我想知道是否可以使用 Python 和任何其他包(如 minidom 或 ElementTree)找到所有這些節點.

I was wondering if it's possible to find all these nodes using Python and any additional package like minidom or ElementTree.

推薦答案

可以使用內置的xml.etree.ElementTree 模塊.

You can use built-in xml.etree.ElementTree module.

如果您希望所有元素都具有特定屬性而不考慮屬性值,則可以使用 xpath 表達式:

If you want all elements that have a particular attribute regardless of the attribute values, you can use an xpath expression:

//tag[@attr]

或者,如果您關心價值觀:

Or, if you care about values:

//tag[@attr="value"]

示例(使用 <代碼>findall() 方法):

Example (using findall() method):

import xml.etree.ElementTree as ET

data = """
<parent>
    <child attr="test">1</child>
    <child attr="something else">2</child>
    <child other_attr="other">3</child>
    <child>4</child>
    <child attr="test">5</child>
</parent>
"""

parent = ET.fromstring(data)
print [child.text for child in parent.findall('.//child[@attr]')]
print [child.text for child in parent.findall('.//child[@attr="test"]')]

打印:

['1', '2', '5']
['1', '5']

這篇關于使用 Python 2 在 XML 中按屬性查找所有節點的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

Troubles while parsing with python very large xml file(使用 python 解析非常大的 xml 文件時出現問題)
Python - How to parse xml response and store a elements value in a variable?(Python - 如何解析 xml 響應并將元素值存儲在變量中?)
How to get XML tag value in Python(如何在 Python 中獲取 XML 標記值)
How to correctly parse utf-8 xml with ElementTree?(如何使用 ElementTree 正確解析 utf-8 xml?)
Parse XML from URL into python object(將 XML 從 URL 解析為 python 對象)
Large XML File Parsing in Python(Python 中的大型 XML 文件解析)
主站蜘蛛池模板: 日本a网站 | 国产精品毛片无码 | 国产一区二区免费在线 | 99精品国自产在线 | 岛国av一区二区 | 日本a v在线播放 | 欧美专区在线 | 久久一区 | 香蕉视频一区二区 | 日韩成人 | 综合久久久 | 国产精品久久久久久久午夜片 | 三a毛片 | 日韩亚洲欧美一区 | 欧美日韩一 | 黄色一级大片在线免费看产 | 欧美日韩亚洲二区 | 999热精品| 国产一区二区三区视频免费观看 | 新91| 成人在线视频免费观看 | 精品国产乱码久久久久久中文 | 亚洲精品一区在线 | 男人的天堂中文字幕 | 国产精品高清一区二区 | 精品久久久999 | 一区二区三区在线 | 欧美一区二区三区在线观看 | 久久一起草 | 亚洲精品在线看 | 亚洲精品一二三区 | 国产一区日韩在线 | 免费视频二区 | 国产91视频播放 | 日本aa毛片a级毛片免费观看 | 日韩在线免费 | 国产精品久久久爽爽爽麻豆色哟哟 | 免费一级黄色 | 欧美人人| 国产成人精品在线 | 亚州精品天堂中文字幕 |