0 votes
in Python by
Consider b is frozen set, what happens to b.add(3)?

3 will not be available for other general operations

Error as frozen sets cannot be modified

3 will be added as a constant

Related questions

0 votes
asked May 15, 2019 in Python by Derya
+1 vote
asked Feb 14, 2021 in Python by SakshiSharma
...