xxxxxxxxxx
>>> items = set([-1, 0, 1, 2])
>>> set([1, 2]).issubset(items)
True
>>> set([1, 3]).issubset(items)
False
xxxxxxxxxx
## checking any elment of list_B in list_A
list_A = [1, 2, 3, 4]
list_B = [2, 3, 6]
check = any(item in list_A for item in list_B)
print(check)
# True
xxxxxxxxxx
## 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
xxxxxxxxxx
# Program to check the list contains elements of another list
# List1
List1 = ['python' , 'javascript', 'csharp', 'go', 'c', 'c++']
# List2
List2 = ['csharp1' , 'go', 'python']
check = all(item in List1 for item in List2)
if check is True:
print("The list {} contains all elements of the list {}".format(List1, List2))
else :
print("No, List1 doesn't have all elements of the List2.")
xxxxxxxxxx
## 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
xxxxxxxxxx
'''
check if list1 contains any elements of list2
'''
result = any(elem in list1 for elem in list2)
if result:
print("Yes, list1 contains any elements of list2")
else :
print("No, list1 contains any elements of list2")
xxxxxxxxxx
##Taking examples of two python lists.
##Take examples of two lists.
list1 = [2,4,0,7,6]
list2 = [1,0,9,7,6]
##the statement for condition is.
check = any(element in list2 for element in list1)
xxxxxxxxxx
## 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
xxxxxxxxxx
fruits1 = ['Mango','orange','apple','jackfruit']
fruits2 = ['Mango','orange','apple','jackfruit']
new_list= all(item in fruits1 for item in fruits2)
if new_list is True:
print("True")
else :
print("False")
xxxxxxxxxx
boolean var = lis1.stream().anyMatch(element -> list2.contains(element));