find if list contains element python code example
Example 1: python check if list contains elements of another list
list_A = [1, 2, 3, 4]
list_B = [2, 3]
check = all(item in list_A for item in list_B)
print(check)
Example 2: 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')
Example 3: python check if list contains
bikes = ['trek', 'redline', 'giant']
'trek' in bikes
Example 4: python check if list contains value
if value in list:
if value not in list: