如何在python中将内部字段添加到json?

时间:2015-11-20 07:38:04

标签: python json

我有一个类似的json:

{"Details": {
  "id": "1423",
  "StudentName": "xxx",
  "Joineddate" : "yyy",
  "Personalinfo" : "na"

}}

现在我必须将我的json更新为以下内容:

{"Details": {
  "id": 1423,
  "StudentName": "xxx",
  "Joineddate" : "yyy",
  "Personalinfo" : 
  {
    "age" : "30",
    "Address" : "xxxxx"
  }

}}

我不知道如何在python中实现这一点。任何人都可以帮我这个吗?

1 个答案:

答案 0 :(得分:0)

你可以使用demjson: http://www.tutorialspoint.com/json/json_python_example.htm

data= demjson.decode(json)
print  data

然后添加您的数据:

json = demjson.encode(data)
print json