python json序列化与反序列化操作 # dumps() dict-->str 序列化 # loads() str---dict 反序列化 result1 = json.dumps({'a': 1, 'b': 2}) result2 = json.loads(result1) # 写JSON 数据到文件 with open('data.json', 'w') as f: json.dump(data, f) # 从文件读取数据 with open('data.json', 'r') as…