

InterviewSolution
Saved Bookmarks
1. |
Which of these about a frozenset is not true?(a) Mutable data type(b) Allows duplicate values(c) Data type with unordered values(d) Immutable data typeI had been asked this question by my college professor while I was bunking the class.The doubt is from Sets in portion Tuples and Sets of Python |
Answer» RIGHT choice is (a) MUTABLE data TYPE Explanation: A FROZENSET is an immutable data type. |
|