When we want to make sure that a collection of values can't have any duplicates, we store it in a set.
To create a set, we start with curly braces {} to surround the set values.
We separate set values using commas ,.
>>> data = {
... 1,2,3,4,5
... }
>>> data
{1, 2, 3, 4, 5}