outer_keys = filter(lambda x: my_key in x, my_dict.keys())
result = my_dict[next(outer_keys)][my_key]
1
solved Find keys in nested dictionary [closed]
outer_keys = filter(lambda x: my_key in x, my_dict.keys())
result = my_dict[next(outer_keys)][my_key]
1
solved Find keys in nested dictionary [closed]