I have two lists (can be more later), and i want to figure out, which values mach at the same position.
This code below returns matched values, but its not returning the position of the match.
a = [5,0]
b = [5,1]
print list(set(a).intersection(set(b)))
>>5