A set is an unordered collection of unique elements. Its core power is answering "is X in here?" in average O(1), and it automatically rejects duplicates.
Example
python
seen = ()
seen.add()
seen.add()
((seen))
seen
a = {, , }
b = {, , }
a & b
a | b
a - b
