python怎么索引json中的值_使用Python在JSON中查找值

我之前已经成功地解析了JSON文件中的数据,但现在我要实现的函数遇到了问题。我有一个JSON格式的姓名、身份证号码和出生日期列表。我想在Python中得到的是让用户输入一个名字并检索他的身份证号码和出生日期(如果有的话)。

这是我的JSON示例文件:[

{

"id_number": "SA4784",

"name": "Mark",

"birthdate": null

},

{

"id_number": "V410Z8",

"name": "Vincent",

"birthdate": "15/02/1989"

},

{

"id_number": "CZ1094",

"name": "Paul",

"birthdate": "27/09/1994"

}

]

为了清楚起见,我想输入“V410Z8”并得到他的名字和出生日期。

我试图用Python编写一些代码,但我只成功地搜索了“id_number”,而没有搜索“id_number”中的内容,例如“V410Z8”。#!/usr/bin/python

# -*- coding: utf-8 -*-

import json

database = "example.json"

data = json.loads(open(database).read())

id_number = data[0]["id_number"]

print id_number

谢谢你们的支持,伙计们:)

你可能感兴趣的:(python怎么索引json中的值_使用Python在JSON中查找值)