XML模块
2019-01-22 02:00:52来源:博客园 阅读 ()
<?xml version="1.0"?> <data> <country name="Liechtenstein"> <rank updated="yes">2</rank> <year>2008</year> <gdppc>141100</gdppc> <neighbor name="Austria" direction="E"/> <neighbor name="Switzerland" direction="W"/> </country> <country name="Singapore"> <rank updated="yes">5</rank> <year>2011</year> <gdppc>59900</gdppc> <neighbor name="Malaysia" direction="N"/> </country> <country name="Panama"> <rank updated="yes">69</rank> <year>2011</year> <gdppc>13600</gdppc> <neighbor name="Costa Rica" direction="W"/> <neighbor name="Colombia" direction="E"/> </country> </data>
# print(root.iter('year')) #全文搜索 # print(root.find('country')) #在root的子节点找,只找一个 # print(root.findall('country')) #在root的子节点找,找所有
import xml.etree.cElementTree as ET tree=ET.parse('a.xml') root=tree.getroot() '''三种查找节点的方式''' '''=======================================查''' # res=root.iter('rank') #会在整个树中进行查找,而且是查找到所有 # for item in res: # print(item) # print('='*50) # print(item.tag) #标签名 # print(item.attrib) #属性 # print(item.text) #文本内容 # # # res=root.find('country') #只能在当前元素下一级开始查找,并且只找到一个就解释 # print(res.tag) # print(res.attrib) # print(res.text) # # nh=res.find('neighbor') # print(nh.attrib) # # cy=root.findall('country') #只能在当前元素下一级开始查找 # print([item.attrib for item in cy]) '''=======================================改''' # for year in root.iter('year'): # year.text=str(int(year.text)+10) # year.attrib={'updated':'yes'} # # tree.write('b.xml') # tree.write('a.xml') '''=======================================增加''' for country in root.iter('country'): # print(country) year=country.find('year') if int(year.text)>2020: print(country.attrib) ele=ET.Element('egon') ele.attrib={'nb':'yes'} ele.text='非常帅' country.append(ele) tree.write('b.xml') '''=======================================删除''' # for country in root.iter('country'): # # print(country) # year=country.find('year') # if int(year.text) > 2020: # # print(country.attrib) # # ele=ET.Element('egon') # # ele.attrib={'nb':'yes'} # # ele.text='非常帅' # # country.append(ele) # country.remove(year) # tree.write('b.xml')
原文链接:https://www.cnblogs.com/HZLS/p/10299677.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:闭包&装饰器
下一篇:python学习01
- python3 enum模块的应用 2019-08-13
- 利用python自动生成verilog模块例化模板 2019-08-13
- Python random模块(以后用到一个再更新一个) 2019-07-24
- xadmin进行全局配置(修改模块名为中文以及其他自定义的操作 2019-07-24
- concurrent.futures模块简单介绍(线程池,进程池) 2019-07-24
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash