Python: Check a given set has no elements in common with other given set
20. Remove Intersection of a Second Set with a First Set
Write a Python program to check a given set has no elements in common with other given set.
Sample Solution:-
Python Code:
sn1 = {1,2,3}
sn2 = {4,5,6}
sn3 = {3}
print("Original sets:")
print(sn1)
print(sn2)
print(sn3)
print("Check sn1 set has no elements in common with sn2 set:")
print(sn1.isdisjoint(sn2))
print("Check sn1 set has no elements in common with sn3 set:")
print(sn1.isdisjoint(sn3))
Sample Output:
Original sets: {1, 2, 3} {4, 5, 6} {3} Check sn1 set has no elements in common with sn2 set: True Check sn1 set has no elements in common with sn3 set: False
Pictorial Presentation:
Visualize Python code execution:
The following tool visualize what the computer is doing step-by-step as it executes the said program:
For more Practice: Solve these Related Problems:
- Write a Python program to remove the common elements between two sets from the second set using the difference_update() method.
- Write a Python program to update a set by subtracting the intersection with another set.
- Write a Python program to implement a function that modifies a set in place by removing elements that are also in a given second set.
- Write a Python program to use set subtraction to clear the intersection from one set and display the result.
Go to:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to find the elements in a given set that are not in another set.
Next: Write a Python program to remove the intersection of a 2nd set from the 1st set.
Python Code Editor:
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.