Answers for "check if all the values of the list are in other list pytho"

1

how to check if a list contains elements in another list

##Taking examples of two python lists.

##Take examples of two lists.

list1 = [2,4,0,7,6]
list2 = [1,0,9,7,6]

##the statement for condition is.

check = any(element in list2 for element in list1)
Posted by: Guest on July-22-2020
0

how to check if one value is in the list python

if ourlist.count('to') > 0:
   print('"to" exists in ourlist');
Posted by: Guest on December-29-2021

Code answers related to "check if all the values of the list are in other list pytho"

Python Answers by Framework

Browse Popular Code Answers by Language