摘要:
1 # XML 模块的操作参考链接 2 # http://www.cnblogs.com/yuanchenqi/articles/5732581.html 阅读全文
摘要:
1 #json 是用来序列化对象的 2 # 只有2个方法,序列化与反序列化 3 # 但是不能序列化类 与 函数 4 5 import json 6 dict={"key1":[1,2,3,4,5]} 7 f = open("json.test","w",encoding="utf8") 8 dict=json.dumps(dict) 9 f.write(dict) 10 f.... 阅读全文