Find all nodes by attribute in XML using Python 2(使用 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 中按属性查找所有节点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Python 2 在 XML 中按属性查找所有节点
基础教程推荐
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
