How to combine two lists remove (exclude) duplicate values in Python

2 Answers

0 votes
list_a = [1, 2, 2, 3, 3, 4, 5]
list_b = [2, 3, 4, 8, 9]

combine_list = list(set(list_a) | set(list_b))

print(combine_list)


'''
run:

[1, 2, 3, 4, 5, 8, 9]

'''

 



answered Nov 15, 2017 by avibootz
0 votes
list_a = [1, 2, 2, 3, 3, 4, 5]
list_b = [2, 3, 4, 8, 9]

combine_list = list(set(list_a + list_b))

print(combine_list)


'''
run:

[1, 2, 3, 4, 5, 8, 9]

'''

 



answered Nov 15, 2017 by avibootz
...