我是Python的新手。我有这样的JSON响应:
{
"Code" : "Success",
"LastUpdated" : "2012-10-19T08:52:10Z",
}
我需要获得Code
的值,即Success
。我怎么能用Python做到这一点?
答案 0 :(得分:4)
在documentation中搜索json
。您将通过示例找到the json module解释。
答案 1 :(得分:3)
import json
# ... you read here from the file
data = '''{
"Code" : "Success",
"LastUpdated" : "2012-10-19T08:52:10Z"
}'''
result = json.loads(data)
print result['Code']
小心格式!!我在"LastUpdated" : "2012-10-19T08:52:10Z"
之后删除了逗号,因为这不是有效的json。