파이썬에서 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"
}
}
}
}
}
그러나 내가 할 때 print dict(json)
오류가 발생합니다.
이 문자열을 구조로 변환 한 다음 json["title"]
“예제 용어집”을 얻기 위해 호출 하려면 어떻게해야합니까?
답변
import json
d = json.loads(j)
print d['glossary']['title']
답변
json을 사용하기 시작했을 때 혼란스러워 한동안 알아낼 수 없었지만 마침내 원하는 것을 얻었습니다.
여기에 간단한 해결책이 있습니다.
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)
답변
데이터 소스를 신뢰하는 경우 eval
문자열을 사전으로 변환 하는 데 사용할 수 있습니다 .
eval(your_json_format_string)
예:
>>> x = "{'a' : 1, 'b' : True, 'c' : 'C'}"
>>> y = eval(x)
>>> print x
{'a' : 1, 'b' : True, 'c' : 'C'}
>>> print y
{'a': 1, 'c': 'C', 'b': True}
>>> print type(x), type(y)
<type 'str'> <type 'dict'>
>>> print y['a'], type(y['a'])
1 <type 'int'>
>>> print y['a'], type(y['b'])
1 <type 'bool'>
>>> print y['a'], type(y['c'])
1 <type 'str'>