Answers for "list is subset of another"

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
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"

Python Answers by Framework

Browse Popular Code Answers by Language