Answers for "how to compare two list and find different elements in python"

11

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]
Posted by: Guest on June-05-2020
0

compare two lists and find at least one equal python

any(x in a for x in b)
Posted by: Guest on December-28-2020

Code answers related to "how to compare two list and find different elements in python"

Python Answers by Framework

Browse Popular Code Answers by Language