博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xml
阅读量:5300 次
发布时间:2019-06-14

本文共 1844 字,大约阅读时间需要 6 分钟。

2
2008
141100
5
2011
59900
69
2011
13600
8
960
#读
#!/usr/bin/env python import xml.etree.ElementTree as ET tree = ET.parse("xm1.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)
#------------------
#!/usr/bin/env python import xml.etree.ElementTree as ET tree = ET.parse("xm1.xml") root = tree.getroot() # 修改 for node in root.iter('year'):     new_year = int(node.text) + 1     node.text = str(new_year)     node.set("updated", "yes") tree.write("xm1.xml") # 删除node for country in root.findall('country'):     rank = int(country.find('rank').text)     if rank > 50:         root.remove(country) tree.write('output.xml')
#-----------------
#!/usr/bin/env python import xml.etree.ElementTree as ET new_xml = ET.Element("namelist") name = ET.SubElement(new_xml, "name", attrib={"enrolled": "yes"}) age = ET.SubElement(name, "age", attrib={"checked": "no"}) sex = ET.SubElement(name, "sex") sex.text = '33' name2 = ET.SubElement(new_xml, "name", attrib={"enrolled": "no"}) age = ET.SubElement(name2, "age") age.text = '19' et = ET.ElementTree(new_xml)  # 生成文档对象 et.write("test.xml", encoding="utf-8", xml_declaration=True) ET.dump(new_xml)  # 打印生成的格式

转载于:https://www.cnblogs.com/rongye/p/9942699.html

你可能感兴趣的文章
OneAPM 云监控部署与试用体验
查看>>
加固linux
查看>>
wget 升级
查看>>
为什么需要大数据安全分析?
查看>>
day13.字典复习
查看>>
IPSP问题
查看>>
(转)Java中的String为什么是不可变的? -- String源码分析
查看>>
HNU 10362 A+B for Input-Output Practice (II)
查看>>
iOS——UIButton响应传参数
查看>>
【转帖】关于'eh vector constructor/destructor iterator'的讨论及类的内存分布模型
查看>>
十. 图形界面(GUI)设计9.列表和组合框
查看>>
10.17动手动脑
查看>>
操作系统实验一:并发程序设计
查看>>
互联网协议入门(一)
查看>>
16_Python变量作用域_Python编程之路
查看>>
js index of()用法
查看>>
XSS原理及防范
查看>>
WPF中Image显示本地图片
查看>>
SVN版本管理
查看>>
哈希表等概率情况下查找成功和查找不成功的平均查找长度的计算
查看>>