EN
Python - remove set items
0 points
In this article, we would like to show you how to remove set items in Python.
Quick solution:
xxxxxxxxxx
1
my_set.remove('item')
or
xxxxxxxxxx
1
my_set.discard('item')
Note:
The difference between
remove()
anddiscard()
method is that when the item to remove doesn't exist, thediscard()
method won't throw an error.
In this example, we use remove()
method to remove B
item from the set.
xxxxxxxxxx
1
my_set = {'A', 'B', 'C'}
2
3
my_set.remove('B')
4
5
print(my_set) # {'C', 'A'}
Output:
xxxxxxxxxx
1
{'C', 'A'}
In this example, we use discard()
method to remove B
item from the set.
xxxxxxxxxx
1
my_set = {'A', 'B', 'C'}
2
3
my_set.discard('B')
4
5
print(my_set) # {'C', 'A'}
Output:
xxxxxxxxxx
1
{'A', 'C'}
In this example, we use clear()
method to empty the set.
xxxxxxxxxx
1
my_set = {'A', 'B', 'C'}
2
3
my_set.clear()
4
5
print(my_set) # set()
Output:
xxxxxxxxxx
1
set()