python compare lists and get the matched values 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]