Python创建xml的方法
作者:Sephiroth 时间:2021-11-25 05:59:44
本文实例讲述了Python创建xml的方法。分享给大家供大家参考。具体实现方法如下:
from xml.dom.minidom import Document
class write_xml(Document):
def __init__(self):
Document.__init__(self)
def set_tag(self,tag):
self.tag = tag
self.tag1 = self.createElement(self.tag)
self.appendChild(self.tag1)
self.maincard = self.createElement("card")
self.maincard.setAttribute("id", "main")
self.maincard.setAttribute("id2","main2")
self.tag1.appendChild(self.maincard)
self.paragraph1 = self.createElement("p")
self.maincard.appendChild(self.paragraph1)
self.ptext = self.createTextNode("This is a test!")
self.paragraph1.appendChild(self.ptext)
def display(self):
print self.toprettyxml(indent=" ")
wx = write_xml()
wx.set_tag('test')
wx.display()
希望本文所述对大家的Python程序设计有所帮助。
标签:Python,创建,xml
0
投稿
猜你喜欢
python中doctest库实例用法
2022-07-22 16:52:30
在Django中URL正则表达式匹配的方法
2021-06-09 22:38:57
Python执行外部命令subprocess的使用详解
2023-01-21 14:57:49
Django中使用group_by的方法
2023-04-13 21:26:34
python实现飞机大战(面向过程)
2022-04-18 10:44:17
Flask实现图片的上传、下载及展示示例代码
2023-07-14 20:46:17
python使用turtle库与random库绘制雪花
2021-02-21 22:51:20
VC基于ADO技术访问数据库的方法
2024-01-28 22:25:08
连接MySQL时出现1449与1045异常解决办法
2024-01-16 14:07:02
MySQL两种表存储结构性能比较测试过程
2007-12-09 12:45:00
mysql数据库设置utf-8编码的方法步骤
2024-01-19 05:30:56
Python实现计算圆周率π的值到任意位的方法示例
2021-09-08 16:47:09
Oracle密码错误次数过多账号锁定的问题(推荐)
2024-01-14 13:24:05
macOS Sierra安装Apache2.4+PHP7.0+MySQL5.7.16
2023-11-15 13:05:39
Python 聊聊socket中的listen()参数(数字)到底代表什么
2022-10-17 00:49:25
python中如何设置list步长
2022-11-04 14:24:02
go语言使用RC4加密的方法
2024-02-21 04:09:15
在Web关闭页面时发送Ajax请求的实现方法
2024-04-18 10:14:37
MySQL中使用表别名与字段别名的基本教程
2024-01-12 19:39:15
安装Oracle加载数据库错误areasQueries的解决
2010-07-27 13:02:00