Useful set functions in Python
The previous article introduced the concept of sets. This article explores useful set functions associated with accessing, adding and removing elements from a set. Some of these are the same as used for manipulating lists, while others are unique to only sets.
Determining the length of a set
The length of a set is the total number of elements in a set. The syntax to determine the length of a set is len(set)
. This function is also used to determine the lengths of strings and lists.
a = {1,2,3,4,5}
print(len(a))
#OUTPUT 5
Checking membership in a set
Checking membership in a set is a conditional method to determine whether a specific element occurs in a set. There are 2 operators; element in set
and element not in set
to check the occurrence of an element in a set.
a = {1,2,3,4,5}
print(3 in a)
#OUTPUT True
a = {1,2,3,4,5}
print(6 not in a)
#OUTPUT True
Two set functions to add new elements
New elements can be added to sets using the syntax set.add(newElement)
.
a = {1,2,3,4,5}
a.add(6)
print(a)
#OUTPUT {1, 2, 3, 4, 5, 6}
To add multiple elements use set.update()
a = {1,2,3,4,5}
a.update({6,7,8})
print(a)
#OUTPUT {1, 2, 3, 4, 5, 6, 7, 8}
Similarly, other data types such as strings, lists, tuples and dictionaries can also be added. There is no need of converting other data types to sets in order to use this function.
Three set functions to eliminate set elements
The set.clear()
function is used to remove all the elements from a set.
a = {1,2,3,4,5}
a.clear()
print(a)
#OUTPUT set()
To clear specific elements from a set use set.discard(element)
a = {1,2,3,4,5}
a.discard(5)
print(a)
#OUTPUT {1, 2, 3, 4}
Similarly, set.remove(element)
can also be used to eliminate set elements.
a = {1,2,3,4,5}
a.remove(5)
print(a)
#OUTPUT {1, 2, 3, 4}
I am a management graduate with specialisation in Marketing and Finance. I have over 12 years' experience in research and analysis. This includes fundamental and applied research in the domains of management and social sciences. I am well versed with academic research principles. Over the years i have developed a mastery in different types of data analysis on different applications like SPSS, Amos, and NVIVO. My expertise lies in inferring the findings and creating actionable strategies based on them.
Over the past decade I have also built a profile as a researcher on Project Guru's Knowledge Tank division. I have penned over 200 articles that have earned me 400+ citations so far. My Google Scholar profile can be accessed here.
I now consult university faculty through Faculty Development Programs (FDPs) on the latest developments in the field of research. I also guide individual researchers on how they can commercialise their inventions or research findings. Other developments im actively involved in at Project Guru include strengthening the "Publish" division as a bridge between industry and academia by bringing together experienced research persons, learners, and practitioners to collaboratively work on a common goal.
I work as an editor and writer for Project Guru. I have a keen interest in new and upcoming learning and teaching methods. I have worked on numerous scholarly projects in the fields of management, marketing and humanities in the last 10 years. Currently, I am working in the footsteps of the National Education Policy of India to help and support fellow professors to emphasise interdisciplinary research and curriculum design.
Discuss