可以使用 remove()
方法來刪除集合中的指定元素,如果元素不存在則會(huì)拋出 KeyError
異常。
示例代碼:
my_set = {1, 2, 3, 4, 5}
print("原始集合:", my_set)
# 刪除元素 3
my_set.remove(3)
print("刪除元素 3 后的集合:", my_set)
# 嘗試刪除不存在的元素 6,會(huì)拋出 KeyError 異常
my_set.remove(6)
輸出結(jié)果:
原始集合: {1, 2, 3, 4, 5}
刪除元素 3 后的集合: {1, 2, 4, 5}
Traceback (most recent call last):
File "<stdin>", line 4, in <module>
KeyError: 6