Answers for "list is subset of another list"

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

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

Python Answers by Framework

Browse Popular Code Answers by Language