Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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 = False if (set_A.intersection(set_B) == set()) else True
print(output)
# True if there is any element same
# False if there is no element same
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #list #item #list #python
ADD COMMENT
Topic
Name
3+8 =