使用Python将string转换为JSON

我有点困惑于Python中的JSON。 对我来说,这似乎是一本字典,因此我试图这样做:

{ "glossary": { "title": "example glossary", "GlossDiv": { "title": "S", "GlossList": { "GlossEntry": { "ID": "SGML", "SortAs": "SGML", "GlossTerm": "Standard Generalized Markup Language", "Acronym": "SGML", "Abbrev": "ISO 8879:1986", "GlossDef": { "para": "A meta-markup language, used to create markup languages such as DocBook.", "GlossSeeAlso": ["GML", "XML"] }, "GlossSee": "markup" } } } } } 

但是,当我打印字典(JSON),它会给出一个错误。

如何将这个string转换成一个结构,然后调用json [“title”]来获得“示例词汇表”?

json.loads()

 d = json.loads(j) print d['glossary']['title'] 

当我开始使用json的时候,我感到困惑,无法解决一段时间,但最终我得到了我想要的
这是简单的解决scheme

 import json m = {'id': 2, 'name': 'hussain'} n = json.dumps(m) o = json.loads(n) print o['id'], o['name'] 

使用simplejson或cjson来加速

 import simplejson as json json.loads(obj) or cjson.decode(obj) 

在这个答案中没有JSON的方法。

但是,这种方式需要对数据结构进行微调