check if a list contains any item from another list python
## using set
list_A =[1,2,3,4]
list_B =[5,1]
set_A =set(list_A)
set_B =set(list_B)
output =Falseif(set_A.intersection(set_B)==set())elseTrueprint(output)# True if there is any element same# False if there is no element same