06 2015 档案

摘要:git add *git commit(会自动打开一个文本文档让你写提交注释),若是不好用可以用git commit -m "注释"git push 阅读全文
posted @ 2015-06-14 17:25 moye 阅读(148) 评论(0) 推荐(0)
摘要: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 阅读(193) 评论(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 阅读(477) 评论(0) 推荐(0)