26. Problem to find difference between two sets

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.

Difference of two sets: The difference between sets A and B is the set of all elements of A that are not elements of B.

Difference between two sets:

Steps to solve the program

1. Create two sets using {}.
2. Add some elements in the set.
3. Subtract the second set from the first set to find the difference between sets using the “-” operator.
4. Print the output.

				
					a = {1,2,4,5}
b = {2,4}
print("Original set1: ",a)
print("Original set2: ",b)
print("Difference between two sets using - operator: ",a-b)
				
			

Output :

				
					Original set1:  {1, 2, 4, 5}
Original set2:  {2, 4}
Difference between two sets using - operator:  {1, 5}
				
			

Related Articles

remove a random element from a set.

find the intersection between two sets using the “&” operator.

Leave a Comment