vote up 4 vote down star
1

Possible Duplicate:
Python “extend” for a dictionary

I know that Python list can be appended or extended. Is there an easy way to combine two Python dictionaries with unique keys, for instance:

basket_one = {'fruit': 'watermelon', 'veggie': 'pumpkin'}
basket_two = {'dairy': 'cheese', 'meat': 'turkey'}

I then want one big basket of food:

basket = {
    'fruit': 'watermelon', 
    'veggie': 'pumpkin', 
    'dairy': 'cheese', 
    'meat': 'turkey'
}

How can I perform the above in Python?

flag

Dup of stackoverflow.com/questions/577234/… – gnud Oct 11 at 20:27

closed as exact duplicate by gnud, Thierry Lam, Lennart Regebro, SilentGhost, J.F. Sebastian Oct 11 at 23:42

2 Answers

vote up 7 vote down check

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.

link|flag
This is fairly common, a good idiom that everyone should know – gnibbler Oct 11 at 21:58
Wow, that's a really interesting way of combining 2 dictionaries. It uses basic Python. I'm glad this answer has been sneaked in before the question has closed. – Thierry Lam Oct 12 at 2:21
vote up 2 vote down
basket = basket_one.copy()
basket.update(basket_two)

(if the original basket_one does not need to stay intact, you can leave out the copy)

link|flag

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