python在json文件中查找指定数据_使用Python在JSON中查找值

I’ve previously succeeded in parsing data from a JSON file, but now I’m facing a problem with the function I want to achieve. I have a list of names, identification numbers and birthdate in a JSON. What I want to get in Python is to be able to let a user input a name and retrieve his identification number and the birthdate (if present).

This is my JSON example file:

[

{

"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"

}

]

To be clear

你可能感兴趣的:(python在json文件中查找指定数据_使用Python在JSON中查找值)