Answers for "python find the difference between two lists"

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
4

how to subtract 2 lists in python

[item for item in x if item not in y]
Posted by: Guest on September-21-2020

Code answers related to "python find the difference between two lists"

Python Answers by Framework

Browse Popular Code Answers by Language