可以使用Python中的json库来将两个JSON文件合并成一个。具体步骤为:
打开文件并读取JSON数据。
import json
# 打开第一个文件并读取数据
with open('file1.json') as file:
data1 = json.load(file)
# 打开第二个文件并读取数据
with open('file2.json') as file:
data2 = json.load(file)
将两个JSON数据合并成一个。
data = {**data1, **data2}
将合并后的JSON数据写入一个新的文件中。
with open('result.json', 'w') as file:
json.dump(data, file)
完整代码示例:
import json
# 打开第一个文件并读取数据
with open('file1.json') as file:
data1 = json.load(file)
# 打开第二个文件并读取数据
with open('file2.json') as file:
data2 = json.load(file)
# 合并两个JSON数据
data = {**data1, **data2}
# 将合并后的JSON数据写入新文件
with open('result.json', 'w') as file:
json.dump(data, file)
注意:如果两个JSON文件中存在相同的键名,那么后面的键值会覆盖前面的键值。