Languages
[Edit]
EN

Python - add list to set

0 points
Created by:
Jan-Alfaro
681

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'}
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Python - set (popular problems)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join