Answers for "python merge two lists without duplicates"

1

python convert two lists with duplicates to dictiona

dict_1={}

for key,value in zip(list_one,list_two):
    if key not in dict_1:
        dict_1[key]=[value]
    else:
        dict_1[key].append(value)

print(dict_1)
Posted by: Guest on November-10-2020
-2

python merge list no duplicates

# Create the two lists
l1 = [1, 2, 2, 4]
l2 = [2, 5, 5, 5, 6]
# Find elements that are in second but not in first
new = set(l2) - set(l1)
# Create the new list using list concatenation
l = l1 + list(new)
Posted by: Guest on March-21-2021

Code answers related to "python merge two lists without duplicates"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language