demo_set_remove.py:
thisset = {"apple", "banana", "cherry"} thisset.remove("banana") print(thisset)
➜ begtut>python demo_set_remove.py
{'apple', 'cherry'}