0

我知道我可以使用 simplejson 在 python 中检索这样的总单位。

jsondata = json.loads(r.text)
jsondata['data']['total_units']

但是我该如何继续获取状态字段的数据呢?

  {
status: 'ok',                                                                      
data: {
    total_units: 1,                                                               
    unit_info: [{
        type: 'car',                                                             
        status: 'Blue car',          
        id: '20513'
        }]
      }
     }
4

2 回答 2

1

您需要在“unit_info”键中对列表进行索引,以便获取其中的字典。

于 2013-09-28T01:00:08.450 回答
1
jsondata['data']['unit_info'][0]['status']
于 2013-09-28T02:09:16.650 回答