vote up 4 vote down star
1

Which is the best way to extend a dictionary with another one? For instance:

>>> a = { "a" : 1, "b" : 2 }
>>> b = { "c" : 3, "d" : 4 }
>>> a
{'a': 1, 'b': 2}
>>> b
{'c': 3, 'd': 4}

I'm looking for any operation to obtain this avoiding for loop:

{ "a" : 1, "b" : 2, "c" : 3, "d" : 4 }

I wish to do something like:

a.extend(b)  # This does not work
flag

76% accept rate
Just curious -- what made you think extend would work? Where did you read that? – S.Lott Feb 23 at 11:19
I knew for lists [], then i supose may be work for others, not extrange ;-) – FerranB Feb 23 at 13:05

5 Answers

vote up 17 vote down check
a.update(b)

http://docs.python.org/library/stdtypes.html#mapping-types-dict

link|flag
+1: quote the docs – S.Lott Feb 23 at 11:18
vote up 5 vote down
a.update(b)

Will add keys and values from b to a, overwriting if there's already a value for a key.

link|flag
vote up 2 vote down

I tried this statement but what I have is :

>>> a={"a":1,"b":2}
>>> b={"c":3,"d":4}
>>> a.update(b)
>>> a
{'a': 1, 'c': 3, 'b': 2, 'd': 4}

Did I do something wrong?

link|flag
That's how it's supposed to work. Dictionaries in python does not store the elements in any special order. – gnud Oct 11 at 20:29
vote up 1 vote down

a python dictionary isn't sorted like a list is.

link|flag
vote up 1 vote down

A beautiful gem in this closed question:

The "oneliner way", altering neither of the input dicts, is

basket = dict(basket_one, **basket_two)

In case of conflict, the items from basket_two will override the ones from basket_one. As one-liners go, this is pretty readable and transparent, and I have no compunction against using it any time a dict that's a mix of two others comes in handy (any reader who has trouble understanding it will in fact be very well served by the way this prompts him or hear towards learning about dict and the ** form;-). So, for example, uses like:

x = mungesomedict(dict(adict, **anotherdict))

are reasonably frequent occurrences in my code.

Originally submitted by Alex Martelli

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.