Element类型是一种灵活的容器对象,用于在内存中存储结构化数据. [注意]xml.etree.ElementTree模块在应对恶意结构数据时显得并不安全. 每个element对象都具有以下属性: 1. tag:string对象,表示数据代表的种类. 2. attrib:dictionary对象,表示附有的属性. 3. text:string对象,表示element的内容. 4. tail:string对象,表示element闭合之后的尾迹. 5. 若干子元素(child elements).…