Hướng dẫn intersection multiple sets python

To intersect multiple sets, stored in a list l, use the Python one-liner l.pop().intersection(*l) that takes the first set from the list, calls the intersection() method on it, and passes the remaining sets as arguments by unpacking them from the list.

A set is a unique collection of unordered elements. The intersection operation creates a new set that consists of the elements that exist in all sets.

Hướng dẫn intersection multiple sets python

So, let’s dive into the formal problem formulation, shall we?

Problem: Given a list or a collection of sets. How to join those sets using the intersection operation?

Example: You’ve got a list of sets [{1, 2, 3}, {1, 4}, {2, 3, 5}] and you want to calculate the intersection {1}.

Solution: To intersect a list of sets, use the following strategy:

  • Get the first element from the list as a starting point. This assumes the list has at least one element.
  • Call the intersection() method on the first set object.
  • Pass all sets as arguments into the intersection() method by unpacking the list with the asterisk operator *list.
  • The result of the intersection() method is a new set containing all elements that are in all of the sets.

Code: Here’s the one-liner code that intersects a collection of sets.

# Create the list of sets
lst = [{1, 2, 3}, {1, 4}, {1, 2, 3}]

# One-Liner to intersect a list of sets
print(lst[0].intersection(*lst))

The output of this code is the intersection of the three sets {1, 2, 3}, {1, 4}, and {2, 3, 5}. Only one element appears in all three sets:

{1}

If you love Python one-liners, check out my new book “Python One-Liners” (Amazon Link) that teaches you a thorough understanding of all single lines of Python code.

Try it yourself: Here’s the code in an interactive code shell that runs it in your browser:

Exercise: Change the code to calculate the union of the sets in the list!

Related video: A similar problem is to perform the union operation on a list of sets. In the following video, you can watch me explain how to union multiple sets in Python:

How to Union Multiple Sets in Python?

Where to Go From Here?

Enough theory. Let’s get some practice!

Coders get paid six figures and more because they can solve problems more effectively using machine intelligence and automation.

To become more successful in coding, solve more real problems for real people. That’s how you polish the skills you really need in practice. After all, what’s the use of learning theory that nobody ever needs?

You build high-value coding skills by working on practical coding projects!

Do you want to stop learning with toy projects and focus on practical code projects that earn you money and solve real problems for people?

🚀 If your answer is YES!, consider becoming a Python freelance developer! It’s the best way of approaching the task of improving your Python skills—even if you are a complete beginner.

If you just want to learn about the freelancing opportunity, feel free to watch my free webinar “How to Build Your High-Income Skill Python” and learn how I grew my coding business online and how you can, too—from the comfort of your own home.

Join the free webinar now!

Nerd Humor

Hướng dẫn intersection multiple sets python
Oh yeah, I didn’t even know they renamed it the Willis Tower in 2009, because I know a normal amount about skyscrapers. — xkcd (source)

Hướng dẫn intersection multiple sets python

While working as a researcher in distributed systems, Dr. Christian Mayer found his love for teaching computer science students.

To help students reach higher levels of Python success, he founded the programming education website Finxter.com. He’s author of the popular programming book Python One-Liners (NoStarch 2020), coauthor of the Coffee Break Python series of self-published books, computer science enthusiast, freelancer, and owner of one of the top 10 largest Python blogs worldwide.

His passions are writing, reading, and coding. But his greatest passion is to serve aspiring coders through Finxter and help them to boost their skills. You can join his free email academy here.