Python Set - Eliminate Duplicate


Program
a = {3,3,3,2,2,7,8,8,8,9} print(a) print(type(a))
Input
Output