Skip to content
Advertisement

Why is defaultdict creating an array for my values?

I’m creating a defaultdict from an array of arrays:

JavaScript

My expected outcome is:

JavaScript

But my outcome is:

JavaScript

It is as if defaultdict is trying to keep my values in an array because that is the source list!

Anyone know what’s going on here and how I can get my expected outcome?

Advertisement

Answer

When you call this:

JavaScript

It means that if you attempt to access d['someKey'] and it does not exist, d['someKey'] is initialized by calling list() with no arguments. So you end up with an empty list, which you then append your dictionary to. You probably want this instead:

JavaScript

and then this:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement