In this Python set program, we will find the difference between two sets with the help of the below-given steps.
What is set?
Sets are used to store multiple items in a single variable.
The set is one of 4 built-in data types in Python used to store collections of data.
It is an unordered collection data type that is iterable, mutable and has no duplicate elements.
Intersection of two sets: The intersection is common elements between the two sets.
Intersection between two sets:
Steps to solve the program
1. Create two sets using {}.
2. Add some elements in the set.
3. Use “&” to find the intersection between sets using the “&” operator.
4. Print the output.
Output :
Related Articles
Python program to find the union of multiple sets using the | operator.
Python program to find the symmetric difference of two sets using the “^” operator.
Python program to check if a set is a superset of another set.
Python program to find the common elements between two sets.
Python program to remove a specific element from a set.
Python program to add multiple elements to a set.