Correct the addition of a key and the duplication of a variable name
in Dictionary class documentation.
(cherry picked from commit 4d41535fa3
)
This commit is contained in:
parent
4e73fcc959
commit
339c10889d
|
@ -11,7 +11,7 @@
|
||||||
[codeblock]
|
[codeblock]
|
||||||
var my_dir = {} # Creates an empty dictionary.
|
var my_dir = {} # Creates an empty dictionary.
|
||||||
var points_dir = {"White": 50, "Yellow": 75, "Orange": 100}
|
var points_dir = {"White": 50, "Yellow": 75, "Orange": 100}
|
||||||
var my_dir = {
|
var another_dir = {
|
||||||
key1: value1,
|
key1: value1,
|
||||||
key2: value2,
|
key2: value2,
|
||||||
key3: value3,
|
key3: value3,
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
To add a key to an existing dictionary, access it like an existing key and assign to it:
|
To add a key to an existing dictionary, access it like an existing key and assign to it:
|
||||||
[codeblock]
|
[codeblock]
|
||||||
var points_dir = {"White": 50, "Yellow": 75, "Orange": 100}
|
var points_dir = {"White": 50, "Yellow": 75, "Orange": 100}
|
||||||
var points_dir["Blue"] = 150 # Add "Blue" as a key and assign 150 as its value.
|
points_dir["Blue"] = 150 # Add "Blue" as a key and assign 150 as its value.
|
||||||
[/codeblock]
|
[/codeblock]
|
||||||
Finally, dictionaries can contain different types of keys and values in the same dictionary:
|
Finally, dictionaries can contain different types of keys and values in the same dictionary:
|
||||||
[codeblock]
|
[codeblock]
|
||||||
|
|
Loading…
Reference in New Issue