remove value from set python code example
Example 1: python set remove
s = {0, 1, 2}
s.discard(0)
print(s)
{1, 2}
s.discard(0)
s.remove(0)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
KeyError: 0
Example 2: remove an item from a set python
thisset = {1, 2,3}
thisset.discard(3)
print(thisset)
Example 3: remove element form set in python
list1 = {1,2,3,4}
list1.remove(4)
print(list)
Example 4: remove an item from a set python
list.discard(item)
Example 5: remove an element from a set
list.remove(element)