python两个json文件,合并成一个json文件
时间: 2023-04-11 15:02:05 浏览: 441
python 合并json文件代码
可以使用Python的json库,读取两个json文件,将它们合并成一个字典,然后将字典转换为json格式并写入一个新的json文件中。以下是示例代码:
```python
import json
with open('file1.json', 'r') as f1:
data1 = json.load(f1)
with open('file2.json', 'r') as f2:
data2 = json.load(f2)
merged_data = {**data1, **data2}
with open('merged_file.json', 'w') as f3:
json.dump(merged_data, f3)
```
这段代码将读取名为file1.json和file2.json的两个json文件,将它们合并成一个字典merged_data,然后将merged_data转换为json格式并写入名为merged_file.json的新文件中。
阅读全文