摘要: def read_json(path): """return dict""" with open(path,'r+')as f: return json.load(f) def write_json(path,data): with open(path,"w+")as f: json.dump(da 阅读全文
posted @ 2019-11-15 14:45 不带R的墨菲特 阅读(159) 评论(0) 推荐(0)