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 = [2, 3]

set_A = set(list_A)
set_B = set(list_B)

print(set_A.intersection(set_B))

# 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
9+8 =