Python Programming - Sets - Discussion

Discussion Forum : Sets - General Questions (Q.No. 16)
16.
How do you find the difference between two sets?
set.difference(other_set)
set.subtract(other_set)
set.diff(other_set)
set.diffother_set
Answer: Option
Explanation:
The difference() method is used to find the difference between two sets.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.