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

I have a list that contains several tuples, like:

[('a_key', 'a value'), ('another_key', 'another value')]

where the first tuple-values act as dictionary-keys. I'm now searching for a python-like way to access the key/value-pairs, like:

"mylist.a_key" or "mylist['a_key']"

without iterating over the list. any ideas?

share|improve this question

2 Answers

up vote 13 down vote accepted

You can't do it without any iteration. You will either need iteration to convert it into a dict, at which point key access will become possible sans iteration, or you will need to iterate over it for each key access. Converting to a dict seems the better idea-- in the long run it is more efficient, but more importantly, it represents how you actually see this data structure-- as pairs of keys and values.

>>> x = [('a_key', 'a value'), ('another_key', 'another value')]
>>> y = dict(x)
>>> y['a_key']
'a value'
>>> y['another_key']
'another value'
share|improve this answer
perfect, thank you – schneck Apr 9 '09 at 10:05

If you're generating the list yourself, you might be able to create it as a dictionary at source (which allows for key, value pairs).

Otherwise, Van Gale's defaultdict is the way to go I would think.

Edit:

As mentioned in the comments, defaultdict is not required here unless you need to deal with corner cases like several values with the same key in your list. Still, if you can originally generate the "list" as a dictionary, you save yourself having to iterate back over it afterwards.

share|improve this answer
You would think wrong, since defaultdict is for having a default value to fall back to when key access fails. This situation has nothing to do with that purpose, and you referencing it is the only thing stopping me from giving an upvote. The first paragraph is absolutely correct. – Devin Jeanpierre Apr 9 '09 at 10:12
Quite true - although defaultdict does allow you to deal with issues like multiple versions of the same key value. I'll leave in a reference to it for it's versatility. – mavnn Apr 9 '09 at 10:23
I have, then, voted you up, for the clarification and reiteration. :) – Devin Jeanpierre Apr 9 '09 at 15:55

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.