Python基础(一)文件处理

本小妞迷上赌 提交于 2020-02-26 09:07:15
  1. xml
 1 from xml.dom.minidom import Document
 2 
 3 #文档根路径
 4 documentPath = 'E:\\ObjectOther\\Search\\PythonSearch\\document\\xml'
 5 
 6 #xml 创建
 7 doc = Document()
 8 
 9 rootElement = doc.createElement('root')
10 doc.appendChild(rootElement)
11 
12 
13 node1 = doc.createElement('node1')
14 node1Text = doc.createTextNode('2222')
15 
16 node1.appendChild(node1Text)
17 rootElement.appendChild(node1)
18 
19 # 保存文件
20 with open(documentPath + '\\1.xml', 'w', encoding='utf-8') as f:
21     doc.writexml(f, addindent='\t', newl='\n',encoding='utf-8')

参考:

https://blog.csdn.net/hu694028833/article/details/81089959

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!