Advertisements
Advertisements
Question
List out the set operations supported by python.
Solution
The python supports the set operations such as
Union, Intersection, Difference, and Symmetric difference.
Union:
- The union includes all elements from two or more sets.
- In python, the operator | (pipeline) is used to the union of two) sets.
- The function union() is also used to join two sets in python.
Intersection:
- Intersection includes the common elements in two sets.
- The operator & is used to intersect two sets in python.
- The function intersection() is also used to intersect two sets in python.
Difference:
- The difference includes all elements that are in the first set (say set A) but not in the second set (say set B).
- The minus (-) operator is used to difference set operation in python.
- The function difference() is also used to difference operation.
Symmetric difference:
- The symmetric difference includes all the elements that are in two sets (say sets A and B) but not the ones that are common to two sets.
- The caret (A) operator is used for the symmetric difference set operation in python.
- The function symmetric_difference() is also used to do the same operation.
APPEARS IN
RELATED QUESTIONS
If A = {x/6x2 + x - 15 = 0}
B = {x/2x2 - 5x - 3 = 0}
C = {x/2x2 - x - 3 = 0} then
find (A ∪ B ∪ C)
If A = {1, 2, 3, 4}, B = {3, 4, 5, 6}, C = {4, 5, 6, 7, 8} and universal set X = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, then verify the following:
A ∪ (B ∩ C) = (A ∪ B) ∩ (A ∪ C)
If A = {1, 2, 3, 4}, B = {3, 4, 5, 6},
C = {4, 5, 6, 7, 8} and universal set
X = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, then verify the following:
A ∩ (B ∪ C) = (A ∩ B) ∪ (A ∩ C)
If A = {1, 2, 3, 4}, B = {3, 4, 5, 6}, C = {4, 5, 6, 7, 8} and universal set X = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, then verify the following:
(A ∪ B)' = (A' ∩ B')
If A = {1, 2, 3, 4}, B = {3, 4, 5, 6}, C = {4, 5, 6, 7, 8} and universal set X = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, then verify the following:
(A ∩ B)' = A' ∪ B'
If A = {1, 2, 3, 4}, B = {3, 4, 5, 6}, C = {4, 5, 6, 7, 8} and universal set X = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, then verify the following:
B = (A ∩ B) ∪ (A'∩ B)
If A = {1, 2, 3, 4}, B = {3, 4, 5, 6}, C = {4, 5, 6, 7, 8} and universal set X = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, then verify the following:
n (A ∪ B) = n(A) + n(B) – n(A ∩ B)
If A = {x/6x2 + x - 15 = 0}
B = {x/2x2 - 5x - 3 = 0}
C = {x/2x2 - x - 3 = 0} then
find (A ∩ B ∩ C)
What is set in Python?
Explain the different set operations supported by python with suitable examples.