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

Is it possible to assign multiple keys per value in a Python dictionary. One possible solution is to assign value to each key:

dict = {'k1':'v1', 'k2':'v1', 'k3':'v1', 'k4':'v2'}

but this is not memory efficient since my data file is > 2 GB. Otherwise you could make a dictionary of dictionary keys:

key_dic = {'k1':'k1', 'k2':'k1', 'k3':'k1', 'k4':'k4'}
dict = {'k1':'v1', 'k4':'v2'}
main_key = key_dict['k2']
value = dict[main_key]

This is also very time and effort consuming because I have to go through whole dictionary/file twice. Is there any other easy and inbuilt Python solution?

Note: my dictionary values are not simple string (as in the question 'v1', 'v2') rather complex objects (contains different other dictionary/list etc. and not possible to pickle them)

Note: the question seems similar as How can I use both a key and an index for the same dictionary value? But I am not looking for ordered/indexed dictionary and I am looking for other efficient solutions (if any) other then the two mentioned in this question.

share|improve this question
2  
You are unlikely to find a solution better than your first one. Just put multiple keys in the dictionary. Why is this not good enough? – BrenBarn Jul 12 '12 at 9:52
As I said in question the file is very large so putting same values multiple time need lot of memory. – d.putto Jul 12 '12 at 9:55
8  
Values in python are not necessarily duplicated in python, even if using multiple keys to refer to them. – Martijn Pieters Jul 12 '12 at 9:56
The value won't use up extra memory unless you recreate it every time. See the answer from @Useless. – BrenBarn Jul 12 '12 at 9:56
@MartijnPieters - oh I missed this point I think I should do more test now I remember i,j=0, 0; id(i)==id(j); True :) – d.putto Jul 12 '12 at 9:58
show 6 more comments

2 Answers

What type are the values?

dict = {'k1':MyClass(1), 'k2':MyClass(1)}

will give duplicate value objects, but

v1 = MyClass(1)
dict = {'k1':v1, 'k2':v1}

results in both keys referring to the same actual object.

In the original question, your values are strings: even though you're declaring the same string twice, I think they'll be interned to the same object in that case


NB. if you're not sure whether you've ended up with duplicates, you can find out like so:

if dict['k1'] is dict['k2']:
    print("good: k1 and k2 refer to the same instance")
else:
    print("bad: k1 and k2 refer to different instances")

(is check thanks to J.F.Sebastian, replacing id())

share|improve this answer
dictionary values are not simple string rather complex object (contains different other dictionary/list etc.) – d.putto Jul 12 '12 at 10:06
2  
you could use obj1 is obj2 to test object identity instead of id(obj1) == id(obj2) – J.F. Sebastian Jul 12 '12 at 10:07
1  
@d.putto - in that case make sure you're storing the same instance with each key, not a duplicate instance with the same contents (as per my first two examples). If unsure, confirm with is – Useless Jul 12 '12 at 10:08
1  
type doesn't matter. You shouldn't rely on how Python treats some immutable objects. If you need the same object; just provide it (as in v1 example) – J.F. Sebastian Jul 12 '12 at 10:13
I agree you shouldn't, just wanted to check whether the OP was already getting automagical interning. Thanks for the is reminder btw. – Useless Jul 12 '12 at 10:14
show 1 more comment

You can build an auxiliary dictionary of objects that were already created from the parsed data. The key would be the parsed data, the value would be your constructed object -- say the string value should be converted to some specific object. This way you can control when to construct the new object:

existing = {}   # auxiliary dictionary for making the duplicates shared
result = {}
for k, v in parsed_data_generator():
    obj = existing.setdefault(v, MyClass(v))  # could be made more efficient
    result[k] = obj

Then all the result dictionary duplicate value objects will be represented by a single object of the MyClass class. After building the result, the existing auxiliary dictionary can be deleted.

Here the dict.setdefault() may be elegant and brief. But you should test later whether the more talkative solution is not more efficient -- see below. The reason is that MyClass(v) is always created (in the above example) and then thrown away if its duplicate exists:

existing = {}   # auxiliary dictionary for making the duplicates shared
result = {}
for k, v in parsed_data_generator():
    if v in existing:
        obj = existing[v]
    else:
        obj = MyClass(v)
        existing[v] = obj

    result[k] = obj

This technique can be used also when v is not converted to anything special. For example, if v is a string, both key and value in the auxiliary dictionary will be of the same value. However, the existence of the dictionary ensures that the object will be shared (which is not always ensured by Python).

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.