欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

python读写xml文件实例详解嘛

时间:2022-11-23 09:43:41|栏目:Python代码|点击:

xml文件:country.xml

<data>
	<country name="shdi2hajk">231
		<rank>1<NewNode A="1">This is NEW</NewNode></rank>
		<year>2008</year>
		<gdppc>141100</gdppc>
		<neighbor direction="E" name="Austria" />  
		<neighbor direction="W" name="Switzerland" />
	</country>
	<country name="Singapore">
		<rank>4</rank>
		<year>2011</year>
		<gdppc>59900</gdppc>
		<neighbor direction="N" name="Malaysia" />
	</country>
	<country name="Panama">
		<rank>68</rank>
		<year>2011</year>
		<gdppc>13600</gdppc>
		<neighbor direction="W" name="Costa Rica" />
		<neighbor direction="E" name="Colombia" />
	</country>
	<MediaPlatformService height="165" ip="36.32.160.199" passWord="111" port="9084" userName="admin" width="220">
	</MediaPlatformService>
</data>

xml文件解读

1.xml一个节点有三个属性:tag、text、attrib
2. 以第一个子节点country为例:
3. tag代表节点名字,country节点的tag就是它的名字:country
4. text代表节点文本内容,rank节点的text就是1
5. attrib代表节点包含的属性,以{属性:值}这样的字典形式存放。country节点的属性是{name:Liechtenstein}.name是属性的键,Liechtenstein是属性的值。{属性:值}就是一个字典类型,可以使用一切字典方法。
6. country节点的tag为country,attrib为{name:Liechtenstein},text为空
7. rank节点的tag为rank,attrib为空字典,text为1
8. 综上所述,xml文档主要由节点以及节点的三个属性组成。

读取文件:

import xml.etree.ElementTree as ET
file_path = r'xml_te.xml'
tree = ET.ElementTree(file = file_path)  #读取xml文件
print(tree.iter())
for i in tree.iter('rank'):  #迭代获取tag为'rank'的节点
    print(i.text)
nodes = tree.find('country') #获取第一个tag为country的节点,返回是子节点的迭代对象
print(nodes.tag)
nodes2 = tree.findall('country') #获取所有tag为country的节点
print(nodes2)
for node in nodes2:
    #打印节点的三个属性
    print(node.tag)
    print(node.attrib)
    print(node.text)

增加新节点及修改属性值和文本

import xml.etree.ElementTree as ET
file_path = r'xml_te.xml'
tree = ET.ElementTree(file = file_path)  #读取xml文件

# root = tree.getroot()  #获取根结点
"""增加新节点"""
net = ET.Element('NewNode')
net.attrib = {'A':"1"}   #节点属性
net.text = "This is NEW"   #节点文本
node = tree.find('country/rank/NewNode')   #找到需要增加子节点的父节点
node.append(net)
print(node.text)
tree.write(file_path)  #写入文件
"""修改属性值"""
sub = tree.find('country')   #找到节点
sub.set('name',"shdi2hajk")  #set(key,new value)
sub.text = '231'
print(sub.attrib)
print(sub.text)
tree.write(file_path)  #写入文件

总结

上一篇:在Python中通过机器学习实现人体姿势估计

栏    目:Python代码

下一篇:python中NumPy的安装与基本操作

本文标题:python读写xml文件实例详解嘛

本文地址:http://www.codeinn.net/misctech/219703.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有