set clear() in python
The clear() method removes all elements from the set.
Syntax:
set.clear() parameters: The clear() method doesn't take any parameters. Return: The clear() method doesn't return any value.
# set of letters GEEK = { 'g' , 'e' , 'e' , 'k' , 's' } print ( 'GEEK before clear:' , GEEK) # clearing vowels GEEK.clear() print ( 'GEEK after clear:' , GEEK) |
chevron_right
filter_none
Output:
GEEK before clear: set(['s', 'e', 'k', 'g']) GEEK after clear: set([])
Application:
It is used to clear set.
# set of letters GEEK = { 6 , 0 , 4 , 1 } print ( 'GEEK before clear:' , GEEK) # clearing vowels GEEK.clear() print ( 'GEEK after clear:' , GEEK) |
chevron_right
filter_none
Output:
GEEK before clear: set([0, 1, 4, 6]) GEEK after clear: set([])
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.