关于python:组合两个JSON

COmbining two jsons

本问题已经有最佳答案,请猛点这里访问。

我有两个JSON对象,我正在研究如何将它们合并到Python中。

1
2
y={"success":"true"}
x={"0":"740","1":"747","2":"883","3":"750","4":"769"}

我需要以下方式的最终结果

1
2
3
4
5
6
7
8
9
{"success":"true",
 "data":{
      "0":"740",
      "1":"747",
      "2":"883",
      "3":"750",
      "4":"769"
         }
              }

我正试图附加它,但它显示了一些错误。帮助我使用Python中的代码。


your input seem to be strings and not dictionaries. you need to convert them to dicts using json.loads

导入jsony='"成功":"真


你可以简单地做EDOCX1[0]

[cc lang="python"]y={"success":"true


I assume that they are strings and not python dicts. So here is what you can do

[cc lang="python"]y='{"success":"true