Enter 5 numbers in two sets and find the difference set in Python
Sets - Question 7
In this question, we will see how to enter 5 numbers in two sets and find the difference set in Python programming. To know more about sets click on the sets lesson.
Q7) Write a program in Python to enter 5 numbers in two sets and find the difference set, that means create a new set having numbers only present in Set A but not in Set B and display the new set on the screen.
Example:- Set A = {1, 2, 3, 4, 5} Set B = {1, 6, 2, 7, 3} New set c having numbers only present in Set a but not in Set b {4, 5}
Program
a=set()
b=set()
print('Enter 5 numbers in Set a')
for i in range(5):
a.add(int(input()))
print('Enter 5 numbers in Set b')
for i in range(5):
b.add(int(input()))
# Creating a new set having numbers only present in Set a but not in Set b
c=a.difference(b)
print('New set c having numbers only present in Set a but not in Set b')
print(c)
Output
Enter 5 numbers in Set a 1 2 3 4 5 Enter 5 numbers in Set b 1 6 2 7 3 New set c having numbers only present in Set a but not in Set b {4, 5}