python写入xml文件演示代码

2022-03-11 00:00:00 代码 写入 演示

python写入xml文件演示代码,本范例通过xml模块对xml文件进行写入操作

"""
皮蛋编程(https://www.pidancode.com)
创建日期:2022/3/29
功能描述:python写入xml文件演示代码
"""
from xml.dom.minidom import Document
doc = Document()
people = doc.createElement("people")
doc.appendChild(people)
aperson = doc.createElement("person")
people.appendChild(aperson)
name = doc.createElement("name")
aperson.appendChild(name)
personname = doc.createTextNode("Annie")
name.appendChild(personname)
filename = "pidancode.com.xml"
f = open(filename, "w")
f.write(doc.toprettyxml(indent="   "))
f.close()

相关文章