python 使用Python在JSON中查找值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用Python在JSON中查找值相关的知识,希望对你有一定的参考价值。

data = [
 {
   "id_number": "SA4784",
   "name": "Mark",
   "birthdate": None
 },
 {
   "id_number": "V410Z8",
   "name": "Vincent",
   "birthdate": "15/02/1989"
 },
 {
   "id_number": "CZ1094",
   "name": "Paul",
   "birthdate": "27/09/1994"
 }
]

for i in data:
    if i['id_number'] == 'V410Z8':
        print(i['birthdate'])
        print(i['name'])
        break

以上是关于python 使用Python在JSON中查找值的主要内容,如果未能解决你的问题,请参考以下文章

在python的嵌套json字典中查找一个值

在 JSON (Python) 中查找元素的最快方法 [重复]

使用 Python 在 XML 中查找和替换值

如何用python查找和替换json文件中的特定字符串

使用 Panda 在 Python 中根据名称查找值之间的关系

如何在python中使用生成器查找特定值