python find the difference between two sets 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: difference of two set in python
x = {1, 2, 3, 4, 5, 6}
y = {1, 2, 3, 4}
z = x.difference(y)
# 5, 6