Answers for "python list difference"

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
0

list difference python

# Python code t get difference of two lists
# Using set()
def Diff(li1, li2):
    return list(set(li1) - set(li2)) + list(set(li2) - set(li1))
 
# Driver Code
li1 = [10, 15, 20, 25, 30, 35, 40]
li2 = [25, 40, 35]
print(Diff(li1, li2))
Posted by: Guest on October-12-2021
0

get list of words that are in two lists using set

list1 = ['little','blue','widget']
list2 = ['there','is','a','little','blue','cup','on','the','table']

list3 = set(list1)&set(list2) # we don't need to list3 to actually be a list

list4 = sorted(list3, key = lambda k : list1.index(k))
Posted by: Guest on November-21-2020

Python Answers by Framework

Browse Popular Code Answers by Language