It is easy to check if an element of a list is in another list using any():
any()
any(elem in list2 for elem in list1)
but is there
do like this:
[e for e in a if e in b]