python compare 2 lists for similar elements code example
Example: how to compare two lists element by element in python and return matched element
>>> [i for i, j in zip(a, b) if i == j]
[5]
>>> [i for i, j in zip(a, b) if i == j]
[5]