python生成xml格式檔案例項

2021-06-28 03:22:52 字數 1133 閱讀 6766

本文是乙個python實現的生成xml格式檔案的操作例項,是非常常見的實用技巧,感興趣的朋友可以參考下

要生成的xml檔案格式如下:

<?xml version="1.0" ?> 

sample xml thing

ma xiaoju

springs widgets, inc.

first

i think widgets are greate.you should buy lots of them forom

spirngy widgts, inc

python實現**如下:

from xml.dom import minidom, node 

doc = minidom.document()

#generate the book

book = doc.createelement('book')

#the title

title = doc.createelement('title')

#the author section

author = doc.createelement("author")

name = doc.createelement('name')

firstname = doc.createelement('first')

lastname = doc.createelement('last')

affiliation = doc.createelement("affiliation")

#the chapter

chapter = doc.createelement('chapter')

chapter.setattribute('number', '1')

title = doc.createelement('title')

para = doc.createelement('para')

you should buy lots of them forom"))

company = doc.createelement('company')

print doc.toprettyxml()

資料集生成Xml 格式檔案

資料集生成xml 格式檔案 function makexml dataset tadodataset xmlrootname string integer vari integer xml string temp variant doc ixmldomdocument root,child,chil...

C C 解析XML格式檔案

前面我們講了生成xml檔案,但是 xml檔案怎麼解析呢?要解析的檔案 people mxmlloadfile null,rfp,mxml no callback 根標籤 object mxmlfindelement people,people,object null,null,mxml descen...

RapidJSON生成json格式檔案

json串 花括弧表示乙個 容器 方括號裝載陣列 名稱和值用冒號隔開 陣列元素通過逗號隔開 json示例 value是乙個陣列且裡面每個元素又是乙個json格式,string createjson 乙個陣列且裡面每個元素又是乙個json elp value array json karraytype...