I\'d like to make one list from two separate lists of unique items.
There are other similar questions but there didn\'t seem to be any that concerned doing this problem
Clean and professional solution:
list = [1, 2, 3] list1 = [3, 4, 5] result = list(set().union(list, list1)) # result [1, 2, 3, 4, 5]