用把两个json文件合并在一个json里面
时间: 2023-10-29 21:59:03 浏览: 153
合并两个json纯对象
4星 · 用户满意度95%
没问题,您可以使用Python读取两个JSON文件,然后合并到一个JSON对象里面,最后将其写入一个文件中。以下是Python代码示例:
```python
import json
with open('file1.json') as f:
data1 = json.load(f)
with open('file2.json') as f:
data2 = json.load(f)
combined_data = {**data1, **data2}
with open('combined_file.json', 'w') as f:
json.dump(combined_data, f)
```
其中,`file1.json` 和 `file2.json` 分别是两个需要合并的JSON文件,`combined_file.json` 是合并后的文件。
阅读全文