Python Sets
In Python, a Set is an unordered collection of data types that is iterable, mutable and has no duplicate elements. The order of elements in a set is undefined though it may consist of various elements. The major advantage of using a set, as opposed to a list, is that it has a highly optimized method for checking whether a specific element is contained in the set.
Creating a Set
Sets can be created by using the built-in set() function with an iterable object or a sequence by placing the sequence inside curly braces, separated by a ‘comma’.
Note: A set cannot have mutable elements like a list or dictionary, as it is mutable.
- Python3
Initial blank Set: set() Set with the use of String: {'e', 'r', 'G', 's', 'F', 'k', 'o'} Set with the use of an Object: {'e', 'r', 'G', 's', 'F', 'k', 'o'} Set with the use of List: {'Geeks', 'For'}
A set contains only unique elements but at the time of set creation, multiple duplicate values can also be passed. Order of elements in a set is undefined and is unchangeable. Type of elements in a set need not be the same, various mixed-up data type values can also be passed to the set.
- Python3
Set with the use of Numbers: {1, 2, 3, 4, 5, 6} Set with the use of Mixed Values {1, 2, 'For', 4, 6, 'Geeks'}
Creating a set with another method
- Python3
{1, 2, 3}
Adding Elements to a Set
Using add() method
Elements can be added to the Set by using the built-in add() function. Only one element at a time can be added to the set by using add() method, loops are used to add multiple elements at a time with the use of add() method.
Note: Lists cannot be added to a set as elements because Lists are not hashable whereas Tuples can be added because tuples are immutable and hence Hashable.
- Python3
Initial blank Set: set() Set after Addition of Three elements: {8, 9, (6, 7)} Set after Addition of elements from 1-5: {1, 2, 3, (6, 7), 4, 5, 8, 9}
Using update() method
For the addition of two or more elements Update() method is used. The update() method accepts lists, strings, tuples as well as other sets as its arguments. In all of these cases, duplicate elements are avoided.
- Python3
Set after Addition of elements using Update: {4, 5, (6, 7), 10, 11}
Accessing a Set
Set items cannot be accessed by referring to an index, since sets are unordered the items has no index. But you can loop through the set items using a for loop, or ask if a specified value is present in a set, by using the in keyword.
- Python3
Initial set {'For', 'Geeks'} Elements of set: For Geeks True
Removing elements from the Set
Using remove() method or discard() method:
Elements can be removed from the Set by using the built-in remove() function but a KeyError arises if the element doesn’t exist in the set. To remove elements from a set without KeyError, use discard(), if the element doesn’t exist in the set, it remains unchanged.
- Python3
Initial Set: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12} Set after Removal of two elements: {1, 2, 3, 4, 7, 8, 9, 10, 11, 12} Set after Discarding two elements: {1, 2, 3, 4, 7, 10, 11, 12} Set after Removing a range of elements: {7, 10, 11, 12}
Using pop() method:
Pop() function can also be used to remove and return an element from the set, but it removes only the last element of the set.
Note: If the set is unordered then there’s no such way to determine which element is popped by using the pop() function.
- Python3
Initial Set: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12} Set after popping an element: {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}
Using clear() method:
To remove all the elements from the set, clear() function is used.
- Python3
Initial set: {1, 2, 3, 4, 5} Set after clearing all the elements: set()
Frozen sets in Python are immutable objects that only support methods and operators that produce a result without affecting the frozen set or sets to which they are applied. While elements of a set can be modified at any time, elements of the frozen set remain the same after creation.
If no parameters are passed, it returns an empty frozenset.
- Python3
The FrozenSet is: frozenset({'o', 'G', 'e', 's', 'r', 'F', 'k'}) Empty FrozenSet: frozenset()
Typecasting Objects into sets
- Python3
my_list as a set: {1, 2, 3, 4, 5, 6} my_str as a set: {'f', 'G', 'r', 'o', 's', 'k', 'e'} my_dict as a set: {1, 2, 3}
Set Methods
Function | Description |
---|---|
add() | Adds an element to a set |
remove() | Removes an element from a set. If the element is not present in the set, raise a KeyError |
clear() | Removes all elements form a set |
copy() | Returns a shallow copy of a set |
pop() | Removes and returns an arbitrary set element. Raise KeyError if the set is empty |
update() | Updates a set with the union of itself and others |
union() | Returns the union of sets in a new set |
difference() | Returns the difference of two or more sets as a new set |
difference_update() | Removes all elements of another set from this set |
discard() | Removes an element from set if it is a member. (Do nothing if the element is not in set) |
intersection() | Returns the intersection of two sets as a new set |
intersection_update() | Updates the set with the intersection of itself and another |
isdisjoint() | Returns True if two sets have a null intersection |
issubset() | Returns True if another set contains this set |
issuperset() | Returns True if this set contains another set |
symmetric_difference() | Returns the symmetric difference of two sets as a new set |
symmetric_difference_update() | Updates a set with the symmetric difference of itself and another |