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
>>> l1 = range(10) >>> l2 = range(5, 15) >>> set(l1) | set(l2) set([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14])