ফ্রোজেন সেট
>>> a = frozenset()
>>> a.add(3)
Traceback (most recent call last):
File "<pyshell#23>", line 1, in <module>
a.add(3)
AttributeError: 'frozenset' object has no attribute 'add'Last updated
Was this helpful?
>>> a = frozenset()
>>> a.add(3)
Traceback (most recent call last):
File "<pyshell#23>", line 1, in <module>
a.add(3)
AttributeError: 'frozenset' object has no attribute 'add'Last updated
Was this helpful?
Was this helpful?