python XML模块

Posted 安好_世界

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python XML模块相关的知识,希望对你有一定的参考价值。

import xml.etree.ElementTree as ET

tree = ET.parse("xmltest.xml")#操作的文件
root = tree.getroot()#获取一个内存地址
print(root.tag)#标签名

# 遍历xml文档
for child in root:
print(child.tag, child.attrib)
for i in child:
print(i.tag, i.text,i.attrib)#获取头,内容,属性

# 只遍历year 节点
for node in root.iter(‘year‘):
print(node.tag, node.text)

以上是关于python XML模块的主要内容,如果未能解决你的问题,请参考以下文章

Python xml模块

python模块-xml模块

Python基础-----xml模块

python xml模块

python--xml模块

python - 常用模块 - xml处理模块