Run
# Initialize set set_1 = {'a', 'b', 'c'} # Remove() method set_1.remove('b') print(set_1)
Output