代码示例:(标识:python_set_discard)
python_set_discard.py
thisset = {"apple", "banana", "cherry"}

thisset.discard("banana")

print(thisset)
运行结果: