/* ............... START ............... */
my_set = {1, 2, 3, 4, 5}
my_set.remove(3) # Remove the element 3 from the set
print(my_set) # Output: {1, 2, 4, 5}
my_set = {1, 2, 3, 4, 5}
my_set.discard(3) # Remove the element 3 from the set if present
print(my_set) # Output: {1, 2, 4, 5}
my_set.discard(6) # No exception raised since 6 is not present in the set
print(my_set) # Output: {1, 2, 4, 5}
/* ............... END ............... */