摘要: 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... 阅读全文
posted @ 2015-06-02 08:06 moye 阅读(178) 评论(0) 推荐(0) 编辑
摘要: #coding=utf-8import jsondef writeJSON(filaName="test.json"): f=open(filaName, "wb") testDic={"key":"value"} json.dump(testDic,f) f.close()def ... 阅读全文
posted @ 2015-06-02 07:26 moye 阅读(462) 评论(0) 推荐(0) 编辑