如何使用Python处理JSON?

时间:2012-10-19 09:07:50

标签: python json

我是Python的新手。我有这样的JSON响应:

{
  "Code" : "Success",
  "LastUpdated" : "2012-10-19T08:52:10Z",
}

我需要获得Code的值,即Success。我怎么能用Python做到这一点?

2 个答案:

答案 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。