Q. What is the output, if set1 = {1, 2, 3}?
Code:
set1.issubset(set1)
β
Correct Answer: (A)
True
Explanation: Each set is a subset of itself.
set1.issubset(set1)
Explanation: Each set is a subset of itself.