Python Programming - Sets - Discussion

Discussion Forum : Sets - General Questions (Q.No. 29)
29.
Which method is used to check if a set is equal to another set?
set.is_equal(other_set)
set.equals(other_set)
set.is_equal_to(other_set)
set == other_set
Answer: Option
Explanation:
The '==' operator is used to check if two sets are equal.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.