EN
Python - add list to set
0 points
In this article, we would like to show you how to add list to set in Python.
Quick solution:
xxxxxxxxxx
1
my_set.update(my_list)
In this example, we use update()
method to add my_list
to my_set
.
xxxxxxxxxx
1
my_set = {'A', 'B', 'C'}
2
my_list = ['D', 'E']
3
4
my_set.update(my_list)
5
6
print(my_set) # {'E', 'D', 'A', 'B', 'C'}
Output:
xxxxxxxxxx
1
{'E', 'D', 'A', 'B', 'C'}