python两个以上的json文件,合并成一个json文件
时间: 2023-04-11 21:02:06 浏览: 139
python 合并json文件代码
可以使用Python中的json库和os库来实现合并多个json文件为一个json文件的操作。具体代码如下:
```python
import json
import os
# 定义要合并的json文件路径
json_files = ['file1.json', 'file2.json', 'file3.json']
# 定义合并后的json文件路径
merged_file = 'merged.json'
# 定义一个空的字典,用于存储合并后的json数据
merged_data = {}
# 遍历所有的json文件,将数据合并到merged_data中
for file in json_files:
with open(file, 'r') as f:
data = json.load(f)
merged_data.update(data)
# 将合并后的json数据写入到merged_file中
with open(merged_file, 'w') as f:
json.dump(merged_data, f)
```
以上代码将会把所有的json文件合并成一个json文件,并保存到merged.json文件中。
阅读全文