Answers for "how to check if list contains particular value in python"

7

Check if element in list Python

listA = [item1, item2, item3]
if item4 in listA:
  print('yes, item4 is in the list')
else:
  print('no, item4 is not in the list')
Posted by: Guest on November-21-2020
-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 "how to check if list contains particular value in python"

Python Answers by Framework

Browse Popular Code Answers by Language