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

So I have a list of tuples such as this:

[(1,"juca"),(22,"james"),(53,"xuxa"),(44,"delicia")]

I want this list for a tuple whose number value is equal to something.

So that if I do search(53) it will return the index value of 2

Is there an easy way to do this?

share|improve this question
U guys rock, thx so much! – hdx May 26 '10 at 23:12

5 Answers

up vote 16 down vote accepted
[i for i, v in enumerate(L) if v[0] == 53]
share|improve this answer

You can use a list comprehension:

>>> a = [(1,"juca"),(22,"james"),(53,"xuxa"),(44,"delicia")]
>>> [x[0] for x in a]
[1, 22, 53, 44]
>>> [x[0] for x in a].index(53)
2
share|improve this answer

Your tuples are basically key-value pairs--a python dict--so:

l = [(1,"juca"),(22,"james"),(53,"xuxa"),(44,"delicia")]
val = dict(l)[53]

Edit -- aha, you say you want the index value of (53, "xuxa"). If this is really what you want, you'll have to iterate through the original list, or perhaps make a more complicated dictionary:

d = dict((n,i) for (i,n) in enumerate(e[0] for e in l))
idx = d[53]
share|improve this answer

Hmm... well, the simple way that comes to mind is to convert it to a dict

d = dict(thelist)

and access d[53].

EDIT: Oops, misread your question the first time. It sounds like you actually want to get the index where a given number is stored. In that case, try

dict((t[0], i) for i, t in enumerate(thelist))

instead of a plain old dict conversion. Then d[53] would be 2.

share|improve this answer

I think I can improve on the list comp solutions. After some testing, it seems that a generator improves performance as well as saves memory:

l = [(1,"juca"),(22,"james"),(53,"xuxa"),(44,"delicia")]
next((i for i,v in enumerate(l) if v[0] == 53), None)
    # 'Not found' handles the StopIteration error

Very similar to a list comp, only using ()instead of [], and getting the first value with next(). Python generator expressions docs

share|improve this answer
Why return a string when you can return -1 or None? – xiaomao Oct 21 '12 at 4:31
@xiaomao Good call. – SirReal Nov 4 '12 at 17:47

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.