码迷,mamicode.com
首页 > 编程语言 > 详细

Python - xml模块

时间:2019-05-29 16:23:22      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:技术   遍历   for循环   mamicode   tag   处理   显示   解析   python   

xml模块

处理文档:
技术图片

import xml.etree.ElementTree as ET

tree = ET.parse(‘xmlfile‘)    # ET.parse() 解析xml文档
root = tree.getroot()        # 获取根节点
print(root.tag)          # root.tag 获取根节点标签   这里是data

技术图片

for i in root:
    print(i.tag)        # 获取根节点下的标签
    print(i.attrib)     # 获取根节点下的标签属性

标签>>: country 、标签属性>>: {‘name‘: ‘Panama‘}

技术图片

同样的 country 下也有标签、属性等:

技术图片

也可以用for循环取数据:

技术图片

被标签包围的数据取出来:

技术图片

k.text

技术图片

root.iter(‘year‘) 遍历year节点:

技术图片

修改year节点的属性和值:

技术图片
技术图片

删除:

技术图片

运行后显示:

技术图片

新建一个xml文档

技术图片

代码运行后:

技术图片

Python - xml模块

标签:技术   遍历   for循环   mamicode   tag   处理   显示   解析   python   

原文地址:https://blog.51cto.com/11533525/2402122

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!