Python Language Set: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 32: Line 32:
s2 = s.copy()
s2 = s.copy()
</syntaxhighlight>
</syntaxhighlight>
=Remove an Element from a Set=
<syntaxhighlight lang='py'>
s.remove('a')
</syntaxhighlight>
Does not return anything.

Revision as of 19:20, 28 August 2022

Internal

TODO

Overview

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.