EN
Python - join two sets
0 points
In this article, we would like to show you how to join two sets in Python.
In this example, we use union()
method to create a new set with all items from the two existing sets.
xxxxxxxxxx
1
my_set1 = {'A', 'B'}
2
my_set2 = {'C', 'D'}
3
4
my_set3 = my_set1.union(my_set2)
5
6
print(my_set3) # {'C', 'A', 'B', 'D'}
Output:
xxxxxxxxxx
1
{'C', 'A', 'B', 'D'}
In this example, we use update()
method to add the items from my_set2
to my_set1
.
xxxxxxxxxx
1
my_set1 = {'A', 'B'}
2
my_set2 = {'C', 'D'}
3
4
my_set1.update(my_set2)
5
6
print(my_set1) # {'B', 'A', 'D', 'C'}
Output:
xxxxxxxxxx
1
{'B', 'A', 'D', 'C'}
Note:
Both presented methods exclude duplicate elements.