Python创建xml的方法

时间:2022-09-11 08:22:15

本文实例讲述了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程序设计有所帮助。