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:
my_set.update(my_list)
Practical example
In this example, we use update()
method to add my_list
to my_set
.
my_set = {'A', 'B', 'C'}
my_list = ['D', 'E']
my_set.update(my_list)
print(my_set) # {'E', 'D', 'A', 'B', 'C'}
Output:
{'E', 'D', 'A', 'B', 'C'}