查找json python中是否存在嵌套键

时间:2013-03-04 00:17:36

标签: json python-2.7 nested exists

在下面的JSON响应中,检查python 2.7中是否存在嵌套键“C”的正确方法是什么?

{
  "A": {
    "B": {
      "C": {"D": "yes"}
         }
       }
}

一行JSON     {“A”:{“B”:{“C”:{“D”:“是”}}}}}

4 个答案:

答案 0 :(得分:5)

这是一个老问题,已接受答案,但我会使用嵌套的if语句来做这件事。

import json
json = json.loads('{ "A": { "B": { "C": {"D": "yes"} } } }')

if 'A' in json:
    if 'B' in json['A']:
        if 'C' in json['A']['B']:
            print(json['A']['B']['C']) #or whatever you want to do

或者如果你知道你总是有'A'和'B':

import json
json = json.loads('{ "A": { "B": { "C": {"D": "yes"} } } }')

if 'C' in json['A']['B']:
    print(json['A']['B']['C']) #or whatever

答案 1 :(得分:1)

使用json模块解析输入。然后在try语句中尝试从解析的输入中检索键“A”,然后从结果中键入“B”,然后从该结果中键入“C”。如果抛出错误,则嵌套的“C”不存在

答案 2 :(得分:0)

一种非常简便的方法是使用具有完整键路径支持的软件包python-benedict。因此,使用函数d()强制转换您现有的字典benedict

d = benedict(d)

现在,您的字典具有完整的密钥路径支持,您可以使用in运算符检查密钥是否以pythonic方式存在:

if 'mainsnak.datavalue.value.numeric-id' in d:
    # do something

请找到here的完整文档。

答案 3 :(得分:0)

我使用了一个简单的递归解决方案:

def check_exists(exp, value):
# For the case that we have an empty element
if exp is None:
    return False

# Check existence of the first key
if value[0] in exp:
    
    # if this is the last key in the list, then no need to look further
    if len(value) == 1:
        return True
    else:
        next_value = value[1:len(value)]
        return check_exists(exp[value[0]], next_value)
else:
    return False

要使用此代码,只需在字符串数组中设置嵌套键,例如:

rc = check_exists(json, ["A", "B", "C", "D"])