Python Programming - Sets - Discussion

Discussion Forum : Sets - General Questions (Q.No. 9)
9.
Which of the following methods is used to check if a set is a subset of another set?
set.is_subset(other_set)
set.contains(other_set)
set.issubset(other_set)
set.subset(other_set)
Answer: Option
Explanation:
The issubset() method is used to check if a set is a subset of another set.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.