Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I try to add item to my already filled dictionary in python. Let say this is my dict :

default_data = {
            'item1': 1,
            'item2': 2,
}

I want to add new item such that

default_data = default_data + {'item3':3}

How can I achive this ?

Thanks

share|improve this question
6  
4  
default_data['item3'] = 3 isn't an option? – khachik Jun 20 '11 at 19:08
2  
I apologize, I did not realize the depth of policy on this type of matter. Thanks for the link, it was informative. – machine yearning Jun 20 '11 at 19:21
I Google searched "python add item to dict" and found numerous helpful results, among which was the duplicate question stackoverflow.com/questions/1024847/… – machine yearning Jun 20 '11 at 19:24
show 4 more comments

4 Answers

up vote 58 down vote accepted
default_data['item3'] = 3

Easy as py.

Another possible solution:

default_data.update({'item3': 3})

which is nice if you want to insert multiple items at once.

share|improve this answer
2  
This response is more useful than that at the duplicate post! +1 for improving on something simple! – machine yearning Jun 20 '11 at 19:29
Sorry for the thread necro, but is there any reason to prefer one method over the other when adding one item? – Warrick Feb 26 at 14:01
@Warrick there's absolutely no difference except for personal taste. Personally I find the first to be a little more intuitive for just one item. – Chris Feb 26 at 19:22

It occurred to me that you may have actually be asking how to implement the + operator for dictionaries, the following seems to work:

>>> class Dict(dict):
...     def __add__(self, other):
...         copy = self.copy()
...         copy.update(other)
...         return copy
...     def __radd__(self, other):
...         copy = other.copy()
...         copy.update(self)
...         return copy
... 
>>> default_data = Dict({'item1': 1, 'item2': 2})
>>> default_data + {'item3': 3}
{'item2': 2, 'item3': 3, 'item1': 1}
>>> {'test1': 1} + Dict(test2=2)
{'test1': 1, 'test2': 2}

Note that this is more overhead then using dict[key] = value or dict.update(), so I would recommend against using this solution unless you intend to create a new dictionary anyway.

share|improve this answer
default_data['item3'] = 3

answer must be so long.

share|improve this answer

It can be as simple as:

default_data['item3'] = 3

As @Chris' answer says, you can use update to add more than one item. An example:

default_data.update({'item4': 4, 'item5': 5})

Please see the docs about dictionaries as data structures and dictionaries as built-in types.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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