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

I need to have a dictionary which might have same names for some keys and return a list of values when referencing the key in that case. For example

print mydict['key']
[1,2,3,4,5,6]
share|improve this question
3  
No, but you can use mydict = {'key':[1,2,3,4]} – Artsiom Rudzenka Jul 25 '11 at 8:47
keys are added at runtime – b9107007 Jul 25 '11 at 8:49

3 Answers

For consistency, you should have the dictionary map keys to lists (or sets) of values, of which some can be empty. There is a nice idiom for this:

from collections import defaultdict
d = defaultdict(set)

d["key"].add(...)

(A defaultdict is like a normal dictionary, but if a key is missing it will call the argument you passed in when you instantiated it and use the result as the default value. So this will automatically create an empty set of values if you ask for a key which isn't already present.)


If you need the object to look more like a dictionary (i.e. to set a value by d["key"] = ...) you can do the following. But this is probably a bad idea, because it goes against the normal Python syntax, and is likely to come back and bite you later. Especially if someone else has to maintain your code.

class Multidict(defaultdict):
    def __init__(self):
        super(Multidict, self).__init__(set)

    def __setitem__(self, key, value):
        self[key].add(value)

I haven't tested this.

share|improve this answer

You can use:

myDict = {'key': []}

Then during runtime:

if newKey in myDict:
    myDict[newKey].append(value)
else:
    myDict[newKey] = [value]

Edited as per @Ben's comment:

myDict = {}
myDict.setdefault(newKey, []).append(value)
share|improve this answer
1  
Its' more idiomatic to day myDict.setdefault(newKey, []).append(value) – Ben Ford Jul 25 '11 at 9:38
Sure, thank you @Ben – Artsiom Rudzenka Jul 25 '11 at 9:45

You can also try paste.util.multidict.MultiDict

$ easy_install Paste

Then:

from paste.util.multidict import MultiDict
d = MultiDict()
d.add('a', 1)
d.add('a', 2)
d.add('b', 3)
d.mixed()
>>> {'a': [1, 2], 'b': 3}
d.getall('a')
>>> [1, 2]
d.getall('b')
>>> [3]

Web frameworks like Pylons are using this library to handle HTTP query string/post data, which can have same-name keys.

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.