Python Programming - Sets - Discussion

Discussion Forum : Sets - General Questions (Q.No. 20)
20.
Which of the following statements about frozensets in Python is correct?
Frozensets are mutable.
Frozensets can be used as dictionary keys.
Frozensets can be modified after creation.
Frozensets support element removal using the remove() method.
Answer: Option
Explanation:
Frozensets are immutable and can be used as dictionary keys or elements of other sets.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.