Run
set_1 = {'a', 'b', 'c', 'd'} # Remove element from set set_1.discard('c') print(set_1)
Output