Unlike sets, lists like data allow for duplicate values, like 5 here.
To eliminate duplicates from a list like data, we can transform it into a set with set(), and the list between parentheses.
>>> data = [1,2,3,4,5,5]
>>> set(data)
{1, 2, 3, 4, 5}