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?
[[1,2], [1,3]]
as expected. – Marvelofperu[1,2]
!=['1','2']
. – Marvelofperu