I need an array of data that has a numeric index, but also a human readable index. I need the latter because the numeric indices may change in the future, and I need the numeric indices as a part of a fixed length socket message.

My imagination suggests something like this:

ACTIONS = {
    (0, "ALIVE") : (1, 4, False),
    (2, "DEAD") : (2, 1, True)
}

>ACTIONS[0]
(1, 4, False)
>ACTIONS["DEAD"]
(2, 1, True)
link|improve this question

1  
Awesome question! I would suggest that you change the title of the question to "Multiple Keys per Dictionary Value" to help others wondering the same thing to find this. – Kevin Ward May 29 '11 at 16:54
feedback

5 Answers

up vote 6 down vote accepted

Use Python 2.7's collections.OrderedDict

In [23]: d = collections.OrderedDict([
   ....:   ("ALIVE", (1, 4, False)),
   ....:   ("DEAD", (2, 1, True)),
   ....: ])

In [25]: d["ALIVE"]
Out[25]: (1, 4, False)

In [26]: d.values()[0]
Out[26]: (1, 4, False)

In [27]: d.values()[1]
Out[27]: (2, 1, True)
link|improve this answer
This turned out to be a great solution! At first I assumed OrderedDict meant a dictionary that would order itself automatically, not a dictionary that let me decide the order. Anyway, thanks :-) – Codemonkey May 29 '11 at 16:11
feedback

The simplest way to achieve this is to have two dictionaries: One mapping the indices to your values, and one mapping the string keys to the same objects:

>> actions = {"alive": (1, 4, False), "dead": (2, 1, True)}
>> indexed_actions = {0: actions["alive"], 2: actions["dead"]}
>> actions["alive"]
(1, 4, False)
>> indexed_actions[0]
(1, 4, False)
link|improve this answer
1  
This has a bit of a gotcha, though: indexed_actions and actions aren't kept in sync if you change one of the keys to a new value, even though actions["alive"] is indexed_actions[0]. – DSM May 29 '11 at 0:55
As said above, this is not consistent. Using twice the key is bad... – JBernardo May 29 '11 at 2:28
feedback

Any immutable object can be a key in a Python dictionary. Since tuples are immutable, they can act as keys.

link|improve this answer
1  
did you know that float("nan") can be a key, but it's not equal to itself, so a dict can have any number of it as distinct keys? :-) – MRAB May 28 '11 at 23:31
@MRAB: I presume you know that this is not true, but it made me laugh to think about it! – Sven Marnach May 28 '11 at 23:38
@Sven: After some more experimentation, and with sets, I've found that it's sometimes true. In Python 3.1, '{float("nan"), float("nan")}' returns '{nan, nan}', but 'nan = float("nan"); {nan, nan}' returns '{nan}'. – MRAB May 28 '11 at 23:45
@MRAB: Oh, I see. I assumed float("nan") is float("nan") would hold, but it doesn't. This is really a fun fact! – Sven Marnach May 28 '11 at 23:50
feedback

If you want to name your keys for code readability, you can do the following:

ONE, TWO, THREE  = 1, 2, 3

ACTIONS = {
    ONE : value1,
    TWO : value2
}
link|improve this answer
The problem is to make something like ACTIONS[DEAD] possible. – Jochen Ritzel May 29 '11 at 0:47
feedback

Namedtuples are nice:

>>> import collections
>>> MyTuple = collections.namedtuple('MyTuple', ('x','y','z'))
>>> t = MyTuple(1,2,3)
>>> t
MyTuple(x=1, y=2, z=3)
>>> t[0]
1
>>> t.x
1
>>> t.y
2
link|improve this answer
I think I get what you're saying, but I didn't at first. You should spell it out; an upvote is waiting for you if you do. If the OP doesn't need strings, but only a human-readable way to represent numerical key values, then this is an excellent solution IMO. – senderle May 29 '11 at 2:20
The OP didn't really asked for a string representation... Anyway, he also could do t._asdict()['x'] and achieve that – JBernardo May 29 '11 at 2:25
feedback

Your Answer

 
or
required, but never shown

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