Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to flatten nested python dictionaries?

I'm trying to flatten the nested dictionary:

dict1 = {
    'Bob': {
        'shepherd': [4, 6, 3],
        'collie': [23, 3, 45],
        'poodle': [2, 0, 6],
    },
    'Sarah': {
        'shepherd': [1, 2, 3],
        'collie': [3, 31, 4],
        'poodle': [21, 5, 6],
    },
    'Ann': {
        'shepherd': [4, 6, 3],
        'collie': [23, 3, 45],
        'poodle': [2, 10, 8],
    }
}

I'd like to display all values in lists: [4, 6, 3, 23, 3, 45, 2, 0, 6, 1, 2, 3,..., 2, 10, 8]

My first idea was to do in this way:

dict_flatted = [ i for name in names.values() for dog in dogs.values() for i in dog]

Though I'm getting the error. I'd be happy for tips how to handle it.

like image 944
Monica Avatar asked Dec 18 '22 14:12

Monica


1 Answers

You can use a simple recursive function as follows.

def flatten(d):    
    res = []  # Result list
    if isinstance(d, dict):
        for key, val in d.items():
            res.extend(flatten(val))
    elif isinstance(d, list):
        res = d        
    else:
        raise TypeError("Undefined type for flatten: %s"%type(d))

    return res


dict1 = {
    'Bob': {
        'shepherd': [4, 6, 3],
        'collie': [23, 3, 45],
        'poodle': [2, 0, 6],
    },
    'Sarah': {
        'shepherd': [1, 2, 3],
        'collie': [3, 31, 4],
        'poodle': [21, 5, 6],
    },
    'Ann': {
        'shepherd': [4, 6, 3],
        'collie': [23, 3, 45],
        'poodle': [2, 10, 8],
    }
}

print( flatten(dict1) )
like image 146
Daewon Lee Avatar answered Dec 21 '22 09:12

Daewon Lee