gpt4 book ai didi

python - 如何使用python在JSON中添加父对象

转载 作者:行者123 更新时间:2023-11-28 20:59:17 26 4
gpt4 key购买 nike

我有这个 json,它有 3 个父元素和每个父元素下的几个子元素。我想为所有 3 个当前 parent 添加一个共同的 parent 。

目前我有:

 {
"Parent1": {
"Key1": "Value",
"Key2": "Value",
"Key3": "Value"
},
"Parent2": {
"Key1": "Value",
"Key2": "Value",
"Key3": "Value"
},
"Parent3": {
"Key1": "Value",
"Key2": "Value",
"Key3": "Value"
}
}

我想要的:

{
"Main parent": {
"Parent1": {
"Key1": "Value",
"Key2": "Value",
"Key3": "Value"
},
"Parent2": {
"Key1": "Value",
"Key2": "Value",
"Key3": "Value"
},
"Parent3": {
"Key1": "Value",
"Key2": "Value",
"Key3": "Value"
}
}
}

以下 python3 代码无法完成工作:

with open ("myfile.json", 'r') as f:
myjson = json.load(f)

myjson["Main Parent"] = myjson

如果您对这种情况有所了解,我将不胜感激。

最佳答案

with open ("myfile.json", 'r') as f:
myjson = json.load(f)

myjson = {'Main Parent': myjson}

关于python - 如何使用python在JSON中添加父对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49857964/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com