我有一个我进入 python 的 JSON 字符串,它看起来像这样:
{"count": 100,
"facets": null,
"previous_page": null,
"results": [{"updated_at": "2013-09-17T13:45:13Z", "test_id": 194037042, "customer_id":
203793326, "id": 1954182}]
还有更多元素,但这是我需要的一小部分。基本上,结果有一个包含 100 个字典的列表,其中包含“updated_at、test_id、customer_id、id”以上的元素我需要做的是:
我需要获取所有值的列表,只是 id。我不知道该怎么做,我试过做这样的事情:
for i in my_dict['results']:
print i['id']
但我收到一条错误消息:
print i['id']
TypeError: string indices must be integers
我究竟做错了什么?