脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python创建xml的方法

Python创建xml的方法

2019-11-24 15:50Sephiroth Python

这篇文章主要介绍了Python创建xml的方法,实例分析了Python操作XML文件的技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了Python创建xml的方法。分享给大家供大家参考。具体实现方法如下:

  1. from xml.dom.minidom import Document 
  2. class write_xml(Document): 
  3.   def __init__(self): 
  4.     Document.__init__(self) 
  5.   def set_tag(self,tag): 
  6.     self.tag = tag 
  7.     self.tag1 = self.createElement(self.tag) 
  8.     self.appendChild(self.tag1) 
  9.     self.maincard = self.createElement("card"
  10.     self.maincard.setAttribute("id""main"
  11.     self.maincard.setAttribute("id2","main2"
  12.     self.tag1.appendChild(self.maincard) 
  13.     self.paragraph1 = self.createElement("p"
  14.     self.maincard.appendChild(self.paragraph1) 
  15.     self.ptext = self.createTextNode("This is a test!"
  16.     self.paragraph1.appendChild(self.ptext) 
  17.   def display(self): 
  18.     print self.toprettyxml(indent="  "
  19. wx = write_xml() 
  20. wx.set_tag('test'
  21. wx.display() 

希望本文所述对大家的Python程序设计有所帮助。

延伸 · 阅读

精彩推荐