Python创建以<?xml version="1.0"?>开头的xml文件 点击复制后,将打开C知道体验页
时间: 2023-06-02 07:07:22 浏览: 100
实例Python处理XML文件的方法
这是一个技术问题,可以回答。在Python中,可以使用xml.dom.minidom模块创建xml文件,代码示例如下:
```
import xml.dom.minidom
# 创建xml文档对象
doc = xml.dom.minidom.Document()
# 创建根节点
root = doc.createElement('root')
doc.appendChild(root)
# 创建子节点
child = doc.createElement('child')
root.appendChild(child)
# 创建文本节点
text = doc.createTextNode('This is a text node')
child.appendChild(text)
# 保存xml文件
xml_str = doc.toprettyxml(indent='\t')
with open('example.xml', 'w') as f:
f.write(xml_str)
```
这段代码会创建一个以<?xml version="1.0"?>开头的xml文件,并在其中添加一个根节点(root)和一个子节点(child),并在子节点中添加一个文本节点('This is a text node')。文件保存在当前目录下,命名为example.xml。
阅读全文