python check if list contains elements of another list
## checking all elements of list_B in list_A
list_A = [1, 2, 3, 4]
list_B = [2, 3]
check = all(item in list_A for item in list_B)
print(check)
# True
python check if list contains elements of another list
## checking all elements of list_B in list_A
list_A = [1, 2, 3, 4]
list_B = [2, 3]
check = all(item in list_A for item in list_B)
print(check)
# True
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us