如何使用键路径获取字典的值

时间:2019-07-07 11:05:58

标签: python-3.x list dictionary

我有2本字典。 Dict 1:值是第二个dict的键的路径。

我需要从Get Dict 1获取键和值,并使用路径从Dict 2获取值。

  

dict2:

dict2 = { 
          "s0" : 
          {
             "s1"  :  {
                   "s1_f1":"s1_v1",
                   "s1_f2" : "s1_v2"
                 },
              "s2":   {
                   "s2_f1":"s2_v1",
                   "s2_f2" : "s2_v2",
                   "s2_f3" : {
                                "s3_f1":"s3_v1"
                             }
                 }
          }
}   
  

dict1:

dict1 = {
        "d0_f1":"s0/s1/s1_f1",
        "d3_f1" : "s0/s2/s2_f3/s3_f1",
        "d1_f1":"s0/s2/s2_f1",
        "d1_f2" :"s0/s2/s2_f2"
      }
  

输出:

对于每个键和dict1中的值,获取dict2中的键值 在字典1中,

的值
{"d0_f1" = "s1_v1"}
  

代码:

def find_in_input_json(element, input_json):
    keys = element.split('/')
    rv = input_json
    for key in keys:
        rv = rv[key]
    return rv
value = find_in_input_json(key_value, input_json)
print(value)

这是一条错误消息

AttributeError: 'dict' object has no attribute 'split'

1 个答案:

答案 0 :(得分:0)

New answer-(Final updated)

@vartika,感谢您使用所需的i / p和o / p更新问题,因为它可以帮助我为您提供帮助。

您可以使用下面的代码来完成任务或解决此问题。我已经注释了几行,只是为了让您明白我的观点,而且我认为代码是简洁易懂的。

如果发现任何困难,您可以发表评论。

def find_in_input_json(element, input_json):
    values = {} # Output dictionary with key in dict1: matched value

    for d_f in dict1:
        path = dict1[d_f]       # "s0/s1/s1_f1"
        paths = path.split('/') # ['s0', 's1', 's1_f1']
        rv = input_json

        for s in paths: # s: s0 -> s1 -> s1_f1 (one by one)
            if s in rv:
                rv = rv[s] # Update input_json with new dictionary pointed by current matched key

        values[d_f] = rv # {'d0_f1': 's1_v1'} ->  {'d0_f1': 's1_v1', 'd3_f1': 's3_v1'} -> so...on

    return values


if __name__ == '__main__':
    dict1 = {
        "d0_f1": "s0/s1/s1_f1",
        "d3_f1": "s0/s2/s2_f3/s3_f1",
        "d1_f1": "s0/s2/s2_f1",
        "d1_f2": "s0/s2/s2_f2"
    }

    dict2 = {
        "s0": {
            "s1": {
                "s1_f1": "s1_v1",
                "s1_f2": "s1_v2"
            },
            "s2": {
                "s2_f1": "s2_v1",
                "s2_f2": "s2_v2",
                "s2_f3": {
                    "s3_f1": "s3_v1"
                }
            }
        }
    }

    values = find_in_input_json(dict1, dict2)
    print(values) # {'d0_f1': 's1_v1', 'd3_f1': 's3_v1', 'd1_f1': 's2_v1', 'd1_f2': 's2_v2'}

Old answer

@vartika,据我从问题和评论中了解到,您有一个嵌套的字典,其中有任何列表。

所以我只考虑了以下列表。

我在这里创建了2个字典,key_valueinput_json

内部函数,我正在执行以下操作。

  • 获取element词典中key_value键的值。

  • element的值是一个字符串(path /分隔,即'/Users/hygull/Desktop/Python3/file1/output',因此在您这里使用split()方法就可以了在您的代码中使用过。

  • 最后,我遍历path元素,并检查该path元素是否是input_json中的键。如果是,则获取相应的值并退出循环。

  • 将值返回给调用方。

现在您可以看一下下面的代码。

def find_in_input_json(element, input_json):
    # Fetch element keys value
    element = element['file']["element"] # '/Users/hygull/Desktop/Python3/file1/output'

    keys = element.split('/') 
    print(keys) # ['', 'Users', 'hygull', 'Desktop', 'Python3', 'file2', 'output']

    rv = input_json

    for key in keys:
        if key in rv:     # 'file2' key is in input_json
            rv = rv[key]  # Get its value
            break         # Exit from loop, don't go further 

    return rv             # Return the value


if __name__ == '__main__':
    # TEST CASE 1
    key_value = {
        'file': {
            'name': 'a.py',
            'element': '/Users/hygull/Desktop/Python3/file2/output',
            'children': [
                'b.py',
                'c.py'
            ]
        }
    }

    input_json = {
        'file1': {
            'name': 'a.py',
            'element': '/Users/hygull/Desktop/Python3/file2/output',
            'children': [
                'b.py',
                'c.py'
            ]
        },
        'file2': {
            'name': 'c.py',
            'element': '/Users/hygull/Desktop/Python3/file1/output',
            'children': [
                'd.py',
                'e.py'
            ]
        },
        'file3': {
            'name': 'x.py',
            'element': '/Users/hygull/Desktop/Python3/file4/output',
            'children': [
                'y.py',
                'z.py'
            ]
        }
    }

    value = find_in_input_json(key_value, input_json)
    print(value) # {'name': 'c.py', 'element': '/Users/hygull/Desktop/Python3/file1/output', 'children': ['d.py', 'e.py']}