Answers for "list is subset of another list python"

1

list is subset of another list

one = [1, 2, 3]
two = [9, 8, 5, 3, 2, 1]

all(x in two for x in one)
Posted by: Guest on April-26-2021
1

python subset

# Creating sets
A = {1, 2, 3}
B = {1, 2, 3, 4, 5}

# Checking if A is subset of B (vice versa)
# Returns True
# A is subset of B
print(A.issubset(B))

# Returns False
# B is not subset of A
print(B.issubset(A))
Posted by: Guest on August-05-2020
0

how to check if a list is a subset of another list

if(all(x in test_list for x in sub_list)): 
  flag = True
Posted by: Guest on April-07-2020

Code answers related to "list is subset of another list python"

Python Answers by Framework

Browse Popular Code Answers by Language