sets
# Set = set is a unordered collection of unique objects.
my_set = {1,1,1,1,2,2,3,4,5,6,6,7,8}
print(my_set) # Only unique values.
print(list(my_set))
new = my_set.copy()
print(new)
my_set.clear()
print(my_set)INFO
# Set = set is a unordered collection of unique objects.
my_set = {1,1,1,1,2,2,3,4,5,6,6,7,8}
print(my_set) # Only unique values.
print(list(my_set))
new = my_set.copy()
print(new)
my_set.clear()
print(my_set)