How can I add multiple sets in Python, but only if items are unique
17:41 07 Feb 2018

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)

python