Python Language Set: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 7: Line 7:


=Overview=
=Overview=
=Shallow Copy=
<syntaxhighlight lang='py'>
s = set()
s.add('a')
s2 = s.copy()
</syntaxhighlight>

Revision as of 05:10, 19 July 2022

Internal

TODO

Overview

Shallow Copy

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