当前位置 : 主页 > 编程语言 > python >

python读取xml

来源:互联网 收集:自由互联 发布时间:2022-08-10
from xml.etree.ElementTree import parse f=open("web.xml") et=parse(f) root=et.getroot() print(root.tag) # print(root.attrib) # print(root.text) # print(list(root.iter()))#可以找到所有的节点# # print(root.find("param-value"))#只可以


from xml.etree.ElementTree import parse
f=open("web.xml")
et=parse(f)
root=et.getroot()
print(root.tag)
# print(root.attrib)
# print(root.text)
# print(list(root.iter()))#可以找到所有的节点#
# print(root.find("param-value"))#只可以找到它自己这个子层级下面的元素
print(root.findall(".//listener-class"))#查找子节点叫这个名字的所有元素
print(root.findall("listener/*"))#选择子节点下的所有元素
print(root.findall(".//listener-class/.."))#选择某个节点的所有夫元素
print(root.findall(".//listener[@name]"))#选择某个节点包含某个属性的所有元素
print(root.findall(".//listener-class[@name]"))
上一篇:Python正则search模块
下一篇:没有了
网友评论