[ Web Proxy ]
URL:
Viewing: https://www.pythontutorial.net/python-basics/python-set-intersection/ [Back]  [Original]

Python Set Intersection By Practical Examples
Skip to content

Python Set Intersection

Summary: in this tutorial, you’ll learn about the Python set intersection and how to use it to intersect two or more sets.

TL;DR #

In Python, you can use the set intersection() method or set intersection operator (&) to intersect two or more sets:

new_set = set1.intersection(set2, set3)
new_set = set1 & set2 & set3

The intersection() method and & operator have the same performance.

Introduction to Python set intersection #

When intersecting two or more sets, you’ll get a new set consisting of elements that exist in all sets.

Suppose that you have two following sets s1 and s2:

s1 = {'Python', 'Java','C++'}
s2 = {'C#', 'Java', 'C++' }Code language: JavaScript (javascript)

The intersection of these two sets returns a new set that contains two elements 'Java' and 'C++':

s = {'Java', 'C++'}Code language: JavaScript (javascript)

… because they’re the only elements that exist in both sets.

The following Venn diagram illustrates the intersection of two sets s1 and s2:

Python Set Intersection Example [Python Set Intersection Example]

The set intersection has many useful applications. For example, you can use set intersections to find the common favorites of two friends on a social networking application or to search for common skills of two or more employees on an HR application.

In Python, you can intersect two or more sets using the set intersection() method or set intersection operator (&).

Using Python set intersection() method to intersect two or more sets #

This example shows how to use the set intersection() method to intersect two or more sets:

new_set = set1.intersection(set2, set3, ...)

The following shows how to use the intersection() method to intersect the sets s1 and s2:

s1 = {'Python', 'Java', 'C++'}
s2 = {'C#', 'Java', 'C++'}

s = s1.intersection(s2)

print(s)
Code language: PHP (php)

Try it

Output:

{'C++', 'Java'}Code language: JavaScript (javascript)

Using Python set intersection (&) operator to intersect two or more sets #

Python provides you with the set intersection operator (&) that allows you to intersect two or more sets:

new_set = s1 & s2 & s3 & ...

The following example uses the set intersection operator (&) to intersect the sets s1 and s2:

s1 = {'Python', 'Java', 'C++'}
s2 = {'C#', 'Java', 'C++'}

s = s1 & s2

print(s)Code language: PHP (php)

Try it

Output:

{'C++', 'Java'}Code language: JavaScript (javascript)

Set intersection() method vs set intersection operator (&) #

The set intersection operator only allows sets, while the set intersection() method can accept any iterables, like strings, lists, and dictionaries.

If you pass iterables to the intersection() method, it’ll convert the iterables to set before intersecting them.

However, the set intersection operator (&) will raise an error if you use it with iterables.

The following example uses the intersection() method to intersect a set with a list:

numbers = {1, 2, 3}
scores = [2, 3, 4]

numbers = numbers.intersection(scores)

print(numbers)Code language: PHP (php)

Try it

Output:

{2, 3}

If you use the set intersection operator (&) instead, you’ll get an error:

numbers = {1, 2, 3}
scores = [2, 3, 4]

numbers = numbers & scores

print(numbers)Code language: PHP (php)

Try it

Output:

TypeError: unsupported operand type(s) for &: 'set' and 'list'Code language: JavaScript (javascript)

Summary #

Quiz #

Was this tutorial helpful ?
Yes No
Search …:

Getting Started

Python Fundamentals

Operators

Control Flow

Functions

Python List

Python Dictionary

Python Set

Exception Handling

Python Loop with Else Clause

More on Functions

Modules

File I/O

Directory

Managing Third-party Packages

Copyright © 2021 - Present, By Python Tutorial. All Rights Reserved.


Web Proxy Viewer  |  New URL  |  Original Page