Python Language Dictionary: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Python Language =Overview= d["key"]")
 
Line 2: Line 2:
* [[Python_Language#Dictionary|Python Language]]
* [[Python_Language#Dictionary|Python Language]]
=Overview=
=Overview=
 
Empty map
d["key"]
<syntaxhighlight lang='python'>
m = {}
</syntaxhighlight>
<syntaxhighlight lang='python'>
d["key"]
</syntaxhighlight>

Revision as of 04:54, 16 February 2022

Internal

Overview

Empty map

m = {}
d["key"]