how to compare two list and find different elements in python code example
Example 1: 2 list difference python
list1 = [1, 2, 4]
list2 = [4, 5, 6]
set_difference = set(list1) - set(list2)
list_difference = list(set_difference)
print(list_difference)
#result
[1,2]
Example 2: compare lists element wise python
[ x&y for (x,y) in zip(list_a, list_b)]
Example 3: compare two lists and find at least one equal python
any(x in a for x in b)