摘要: json 序列化和反序列化 1 import json 2 3 info ={ 4 'age':22, 5 'name':'Ri' 6 } 7 8 with open('test.txt','w',encoding = 'utf-8') as f: 9 print(type(json.dumps(i 阅读全文
posted @ 2018-10-16 15:33 杨fj 阅读(117) 评论(0) 推荐(0)