Assuming the lists are the same length, you could use the zip function
for i, j in zip(l1, l2):
if i == j:
print '{0} and {1} are equal and in the same position'.format(i, j)
What the zip function does is something like this:
l1 = [1, 2, 3]
l2 = [2, 3, 4]
print zip(l1, l2)
# [(1, 2), (2, 3), (3, 4)]
If you want a function that returns True or False given an input, you could do this
def some_func(your_input, l1, l2):
return (your_input,)*2 in zip(l1, l2)
(your_input,) is a one-tuple containing your_input, and multiplying it by two makes it (your_input, your_input) - which is what you want to test for.
Or if you want the return True if any satisfy the condition
def some_func(l1, l2):
return any(i == j for i, j in zip(l1, l2))
The any function basically checks if any of the elements of a list (or in this case a generator) are True in a boolean context, so in this case it returns true if two lists satisfy your condition.
l1 == l2. – Ignacio Vazquez-Abrams Jan 27 at 0:06