Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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]
Source by kite.com #
 
PREVIOUS NEXT
Tagged: #list #difference #python
ADD COMMENT
Topic
Name
6+3 =