• 技术文章 >后端开发 >Python教程

    深入了解python之XML操作

    零到壹度零到壹度2018-04-03 17:28:09原创666
    这篇文章主要介绍了深入了解python之Xml操作,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

    读取xml内容:

     -*- coding:utf-8 -*-
    # Author: Evan Mi
    import xml.etree.ElementTree as ET
    tree = ET.parse('test.xml')
    root = tree.getroot()
    print(root.tag)
    # 一个节点有tag、attrib、text三个值
    # tag是标签的名字
    # text是标签的内容
    # attrib是标签属性的字典,通过字典的get('key')来获取对应的属性的值
    
    # 直接for chile in parent 来遍历节点下的子节点
    for child in root:
        print(child.tag, child.attrib)
        for elem in child:
            print(elem.tag, elem.text, elem.attrib)
    
    # 只遍历year节点
    for node in root.iter('year'):
        print(node.tag, node.text)

    生成xml内容:

    # -*- coding:utf-8 -*-
    # Author: Evan Mi
    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('te.xml', encoding='utf-8', xml_declaration=True)
    
    ET.dump(new_xml)  # 打印生成的格式

    修改、删除xml内容:

    # -*- coding:utf-8 -*-
    # Author: Evan Mi
    import xml.etree.ElementTree as ET
    
    tree = ET.parse('test.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('tt.xml')
    
    
    # 删除
    for country in root.findall('country'):
        rank = int(country.find('rank').text)
        if rank > 50:
            root.remove(country)
    tree.write('tt1.xml')

    相关推荐:

    Python & XML

    python读写xml文件

    Python之XML文件操作

    以上就是深入了解python之XML操作的详细内容,更多请关注php中文网其它相关文章!

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:python XML
    上一篇:关于Python函数的深度解剖 下一篇:如何在Python环境下安装Selenium+Headless Chrome
    20期PHP线上班

    相关文章推荐

    • 【活动】充值PHP中文网VIP即送云服务器• 深入了解Python装饰器函数• Python图像处理之PIL库• python数据可视化之饼状图的绘制• 实例讲解Python批量修改文件名• Python实例详解pdfplumber读取PDF写入Excel
    1/1

    PHP中文网