1.

What is the output of the following code? >>> a={1,2,3} >>> b=frozenset([3,4,5]) >>> a-b

A. {1,2}
B. Error as difference between a set and frozenset can’t be found out
C. Error as unsupported operand type for set data type
D. frozenset({1,2})
Answer» B. Error as difference between a set and frozenset can’t be found out


Discussion

No Comment Found