Answers for "how to check a different element in a list"

4

python how to check if all elements in list are the same

List = ['Mon','Mon','Mon','Mon']
// Result from count matches with result from len()
result = List.count(List[0]) == len(List)
if (result):
   print("All the elements are Equal")
else:
   print("Elements are not equal")
Posted by: Guest on August-05-2020
2

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

Code answers related to "how to check a different element in a list"

Python Answers by Framework

Browse Popular Code Answers by Language