Python Language Dictionary: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:
m = {}
m = {}
</syntaxhighlight>
</syntaxhighlight>
Access:
<syntaxhighlight lang='python'>
<syntaxhighlight lang='python'>
d["key"]
d["key"]
</syntaxhighlight>
</syntaxhighlight>

Revision as of 06:32, 16 February 2022

Internal

Overview

Empty map

m = {}

Access:

d["key"]