''' import simplejson as json #几个主要函数:dump、dumps、load、loads,带s跟不带s的区别: 带s的是对 字符串的处理,而不带 s的是对文件对像的处理。 json、simplejson效率比较:simplejson在效率上来得有优势,推荐用simplejson ''' et: fw = open("test.txt","wb") dict = {"name":xiaoming,"age":20,"school":"sysu"} json.dump(dict,fw) # 存入文件 dict = json.load(open("test.txt","rb")) for k,v in dict.items(): print k,v