Answers for "check if list is in list python"

2

check if list of list python

for item in list_of_lists:
      isinstance(item, list)
Posted by: Guest on February-06-2021
-1

python find if part of list is in list

'''    
    check if list1 contains all elements in list2
'''
result =  all(elem in list1  for elem in list2)
if result:
    print("Yes, list1 contains all elements in list2")    
else :
    print("No, list1 does not contains all elements in list2"
Posted by: Guest on June-25-2020

Code answers related to "check if list is in list python"

Python Answers by Framework

Browse Popular Code Answers by Language