Python Sets
Python Sets
Set
Sets are used to store multiple items in a single variable.
Set is one of 4 built-in data types in Python used to store collections of data, the
other 3 are List, Tuple, and Dictionary, all with different qualities and usage.
* Note: Set items are unchangeable, but you can remove items and add new
items.
Example
Create a Set:
print(thisset)
Note: Sets are unordered, so you cannot be sure in which order the items will
appear.
Set Items
Set items are unordered, unchangeable, and do not allow duplicate values.
Unordered
Unordered means that the items in a set do not have a defined order.
Set items can appear in a different order every time you use them, and cannot
be referred to by index or key.
Unchangeable
Set items are unchangeable, meaning that we cannot change the items after
the set has been created.
Once a set is created, you cannot change its items, but you can remove items
and add new items.
Example
Duplicate values will be ignored:
print(thisset)
Example
Get the number of items in a set:
print(len(thisset))
Example
String, int and boolean data types:
set2 = {1, 5, 7, 9, 3}
Example
A set with strings, integers and boolean values:
type()
From Python's perspective, sets are defined as objects with the data type 'set':
<class 'set'>
Example
What is the data type of a set?
print(type(myset))
Example
Using the set() constructor to make a set:
print(thisset)
*Set items are unchangeable, but you can remove items and add new items.
**As of Python version 3.7, dictionaries are ordered. In Python 3.6 and earlier,
dictionaries are unordered.
When choosing a collection type, it is useful to understand the properties of that
type. Choosing the right type for a particular data set could mean retention of
meaning, and, it could mean an increase in efficiency or security.
Python - Access Set Items
Access Items
You cannot access items in a set by referring to an index or a key.
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.
Example
Loop through the set, and print the values:
for x in thisset:
print(x)
Example
Check if "banana" is present in the set:
print("banana" in thisset)
Change Items
Once a set is created, you cannot change its items, but you can add new items.
Python - Add Set Items
Add Items
Once a set is created, you cannot change its items, but you can add new items.
Example
Add an item to a set, using the add() method:
thisset.add("orange")
print(thisset)
Add Sets
To add items from another set into the current set, use the update() method.
Example
Add elements from tropical into thisset:
thisset.update(tropical)
print(thisset)
Add Any Iterable
The object in the update() method does not have to be a set, it can be any
iterable object (tuples, lists, dictionaries etc.).
Example
Add elements of a list to at set:
thisset.update(mylist)
print(thisset)
Remove Item
To remove an item in a set, use the remove(), or the discard() method.
Example
Remove "banana" by using the remove() method:
thisset.remove("banana")
print(thisset)
Note: If the item to remove does not exist, remove() will raise an error.
Example
Remove "banana" by using the discard() method:
thisset.discard("banana")
print(thisset)
Note: If the item to remove does not exist, discard() will NOT raise an error.
You can also use the pop() method to remove an item, but this method will
remove the last item. Remember that sets are unordered, so you will not know
what item that gets removed.
Example
Remove the last item by using the pop() method:
x = thisset.pop()
print(x)
print(thisset)
Note: Sets are unordered, so when using the pop() method, you do not know
which item that gets removed.
Example
The clear() method empties the set:
print(thisset)
Example
The del keyword will delete the set completely:
del thisset
print(thisset)
Python - Loop Sets
Loop Items
You can loop through the set items by using a for loop:
Example
Loop through the set, and print the values:
for x in thisset:
print(x)
You can use the union() method that returns a new set containing all items
from both sets, or the update() method that inserts all the items from one set
into another:
Example
The union() method returns a new set with all items from both sets:
set1 = {"a", "b" , "c"}
set2 = {1, 2, 3}
set3 = set1.union(set2)
print(set3)
Example
The update() method inserts the items in set2 into set1:
set2 = {1, 2, 3}
set1.update(set2)
print(set1)
Note: Both union() and update() will exclude any duplicate items
Example
Keep the items that exist in both set x, and set y:
x.intersection_update(y)
print(x)
The intersection() method will return a new set, that only contains the items
that are present in both sets.
Example
Return a set that contains the items that exist in both set x, and set y:
z = x.intersection(y)
print(z)
Example
Keep the items that are not present in both sets:
x.symmetric_difference_update(y)
print(x)
The symmetric_difference() method will return a new set, that contains only
the elements that are NOT present in both sets.
Example
Return a set that contains all items from both sets, except items that are
present in both:
z = x.symmetric_difference(y)
print(z)
Set Methods
Python has a set of built-in methods that you can use on sets.
Method Description
difference_update() Removes the items in this set that are also included
in another, specified set
intersection_update() Removes the items in this set that are not present in
other, specified set(s)
update() Update the set with the union of this set and others