Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check whether a tuple exists in a Python list?

I am new to Python, and I am trying to check whether a pair [a,b] exists in a list l=[[a,b],[c,d],[d,e]]. I searched many questions, but couldn't find precise solution. Please can someone tell me the right and shortest way of doing it?

when i run :

a=[['1','2'],['1','3']]
for i in range(3):
    for j in range(3):
        if [i,j] in a:
            print a

OUTPUT IS BLANK

how to achieve this then?

like image 545
sum2000 Avatar asked Mar 11 '12 11:03

sum2000


2 Answers

Here is an example:

>>> [3, 4] in [[2, 1], [3, 4]]
True

If you need to do this a lot of times consider using a set though, because it has a much faster containment check.

like image 129
orlp Avatar answered Sep 30 '22 07:09

orlp


The code does not work because '1' != 1 and, consequently, ['1','2'] != [1,2] If you want it to work, try:

a=[['1','2'],['1','3']]
for i in range(3):
    for j in range(3):
        if [str(i), str(j)] in a: # Note str
            print a

(But using in or sets as already mentioned is better)

like image 21
bereal Avatar answered Sep 30 '22 08:09

bereal