Logo

Programming-Idioms

History of Idiom 8 > diff from v34 to v35

Edit summary for version 35 by lavi:
[Python]

Version 34

2016-11-29, 03:15:06

Version 35

2016-11-29, 03:15:55

Idiom #8 Initialize a new map (associative array)

Declare a new map object x, and provide some (key, value) pairs as initial content.

Idiom #8 Initialize a new map (associative array)

Declare a new map object x, and provide some (key, value) pairs as initial content.

Extra Keywords
table dictionary hash
Extra Keywords
table dictionary hash
Code
x = {"one": 1, "two":2}
Code
s
Demo URL
http://ideone.com/PeXCe1
Demo URL
http://ideone.com/PeXCe1