Python Language Set: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 45: Line 45:
l=list(s)
l=list(s)
</syntaxhighlight>
</syntaxhighlight>
=<tt>frozenset</tt>=

Revision as of 18:44, 11 September 2022

Internal

TODO

Overview

Sets and the __hash__() Function

Sets and the __hash__() Function

Initialization

Literal initialization:

s = {1, 2, 3}

Set from a tuple:

s = set((1, 2, 3))

Set from a list:

s = set([1, 2, 3])

Set from a string:

s = set('ABC')
print(s)  # {'C', 'B', 'A'}

Shallow Copy

s = set()
s.add('a')
s2 = s.copy()

Remove an Element from a Set

s.remove('a')

Does not return anything.

Convert to List

s=set()
l=list(s)


frozenset