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.

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:
Where to Go From Here?
Enough theory, let’s get some practice!
To become successful in coding, you need to get out there and solve real problems for real people. That’s how you can become a six-figure earner easily. And 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?
Practice projects is how you sharpen your saw in coding!
Do you want to become a code master by focusing on practical code projects that actually earn you money and solve problems for people?
Then become 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.
Join my free webinar “How to Build Your High-Income Skill Python” and watch how I grew my coding business online and how you can, too—from the comfort of your own home.
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.