当前位置:
首页 > Python基础教程 >
-
Python-操作XML文件
一、python对XML文件的操作
目录
1、xml 创建
2、xml 数据查询
3、xml 数据修改
4、xml 数据删除
二、
1、xml 创建
1 import xml.etree.ElementTree as ET 2 3 new_xml=ET.Element('personinfolist') #最外面的标签名 4 personinfo=ET.SubElement(new_xml,'personinfo',attrib={'enrolled':'aaa'}) #对应的参数是:父级标签是谁,当前标签名,当前标签属性与值 5 name=ET.SubElement(personinfo,'name') 6 name.text='xaoming' 7 age=ET.SubElement(personinfo,'age',attrib={'checked':'yes'}) 8 age.text='23' 9 10 11 12 personinfo2=ET.SubElement(new_xml,'personinfo',attrib={'enrolled':'bbb'}) 13 name=ET.SubElement(personinfo2,'name') 14 name.text='xaokong' 15 age=ET.SubElement(personinfo2,'age',attrib={'checked':'no'}) 16 age.text='20' 17 18 et=ET.ElementTree(new_xml) 19 et.write('text1.xml',encoding='utf-8',xml_declaration=True)#生成text1.xml
2、xml 数据查询
1 import xml.etree.ElementTree as ET 2 3 tree=ET.parse('text1.xml') 4 5 root=tree.getroot() 6 7 print(root.tag) 8 9 #遍历 xml 文档 10 for i in root: 11 print(i.tag,i.attrib) # tag是指标签名,attrib 是指标签里的属性,text 是指标签内容 12 for j in i: 13 print(j.tag,j.attrib,j.text) 14 for k in j: 15 print(k.tag,k.attrib,k.text) 16 17 #只遍历 year 标签 18 for w in root.iter('year'): #只遍历指定标签 19 print(w.tag,w.text)
3、xml 数据修改
1 import xml.etree.ElementTree as ET 2 3 tree=ET.parse('text1.xml') 4 5 root=tree.getroot() 6 7 print(root.tag) 8 9 #修改 xml 10 for node in root.iter('year'): #要修改的标签 11 new_year=int(node.text)+1 12 node.text=str(new_year) 13 node.set('updsted_by','kong') #给这个标签(year)添加新的属性 key:value 14 15 tree.write('text1.xml') #再吧数据写回去
4、xml数据删除
import xml.etree.ElementTree as ET tree=ET.parse('text1.xml') root=tree.getroot() for country in root.findall('country'): #会取这个标签所有的数据 rank=int(country.find('rank').text) if rank > 50: root.remove(country) #删除数据 tree.write('output.xml') #再把数据写回文件
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式