How can I add multiple sets in Python, but only if items are unique
I need to add an undetermined number of lists (sets), but I only want to add members if they are unique:
(1,2,3) (3,4,5) (4,7,8,9) (5,3,9)
would need to give: (1,2,7,8)