Languages
[Edit]
EN

Python - print common elements of two sets

0 points
Created by:
Inferio
328

In this article, we would like to show you how to print common elements of two sets in Python.

Practical example

In this example, we use intersection_update() method to keep only the common elements from my_set1 and my_set2.

my_set1 = {'A', 'B', 'C'}
my_set2 = {'X', 'B', 'C'}

my_set1.intersection_update(my_set2)

print(my_set1)  # {'B', 'C'}

Output:

{'B', 'C'}

Alternative titles

  1. Python - common elements comparison between 2 sets
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