EN
Python - clear set
0 points
In this article, we would like to show you how to clear the set in Python.
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()