Lets say I have a list
a=[1,2,3]
And I want to know if at least one of the numbers in it exist in another list, like this one:
b=[4,5,6,7,8,1]
In other words, I want to know if 1,2 or 3 exist(s) in list b
.
I now I could do something like
def func(a, b):
for i in a:
if i in b:
return True
return False
But is there possibly a way to put that in one line to make things tidy?