用python內(nèi)置的xml.dom可以對xml文件進行解析處理。
什么是xml?
XML指可擴展標記語言(EXtensibleMarkupLanguage)
XML是一種標記語言,很類似HTML
XML的設計宗旨是傳輸數(shù)據(jù),而非顯示數(shù)據(jù)
XML被設計為具有自我描述性。
XML是W3C的推薦標準
xml.dom具體操作實例:
本例通過xml模塊對xml文件進行寫入操作
fromxml.dom.minidomimportDocument
doc=Document()
people=doc.createElement("people")
doc.appendChild(people)
aperson=doc.createElement("person")
people.appendChild(aperson)
name=doc.createElement("name")
aperson.appendChild(name)
personname=doc.createTextNode("Annie")
name.appendChild(personname)
filename="people.xml"
f=open(filename,"w")
f.write(doc.toprettyxml(indent=""))
f.close()
以上內(nèi)容為大家介紹了Python培訓之怎么生成xml文件,希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構(gòu):千鋒教育。