服务器之家

服务器之家 > 正文

Python创建xml的方法

时间:2019-11-24 15:50     来源/作者:Sephiroth

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

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国 2021-05-08
返回顶部