在Python中,可以使用remove()
方法刪除集合中的指定元素。例如:
my_set = {1, 2, 3, 4, 5}
my_set.remove(3)
print(my_set) # 輸出 {1, 2, 4, 5}
如果要刪除集合中不存在的元素,則會拋出KeyError
異常。為了避免這種情況,可以使用discard()
方法,它會嘗試刪除元素,但如果元素不存在則不會拋出異常。例如:
my_set = {1, 2, 3, 4, 5}
my_set.discard(6)
print(my_set) # 輸出 {1, 2, 3, 4, 5}