EN
Python - add sets
0 points
In this article, we would like to show you how to add two sets together in Python.
Quick solution:
xxxxxxxxxx
1
set1.update(set2)
In this example, we use update()
method to add my_set2
to my_set1
.
xxxxxxxxxx
1
my_set1 = {'A', 'B', 'C'}
2
my_set2 = {'D', 'E'}
3
4
my_set1.update(my_set2)
5
6
print(my_set1) # {'B', 'C', 'E', 'D', 'A'}
Output:
xxxxxxxxxx
1
{'B', 'C', 'E', 'D', 'A'}