标签:python ring 表示 灵活 容器 存储结构 nts 类型 tail
xml.etree.ElementTree模块
Element类型是一种灵活的容器对象,用于在内存中存储结构化数据。
xml.etree.ElementTree模块在应对恶意结构数据时显得并不安全。
每个element对象都具有以下属性:
1. tag:string对象,表示数据代表的种类。
2. attrib:dictionary对象,表示附有的属性。
3. text:string对象,表示element的内容。
4. tail:string对象,表示element闭合之后的尾迹。
5. 若干子元素(child elements)。
python-23 xml.etree.ElementTree模块
标签:python ring 表示 灵活 容器 存储结构 nts 类型 tail
原文地址:https://www.cnblogs.com/Zhouzg-2018/p/9926048.html