摘要:
1 #coding=utf-8 2 from xml.dom import minidom 3 from xml.dom.minidom import Document 4 import xml 5 def writeXML(filaName="test.xml"): 6 doc = Doc... 阅读全文
摘要:
#coding=utf-8import jsondef writeJSON(filaName="test.json"): f=open(filaName, "wb") testDic={"key":"value"} json.dump(testDic,f) f.close()def ... 阅读全文