Logo

Programming-Idioms

History of Idiom 13 > diff from v61 to v62

Edit summary for version 62 by justafoo:
[Python] Python2 is close to EOL

Version 61

2019-09-26, 17:43:55

Version 62

2019-09-26, 17:44:39

Idiom #13 Iterate over map keys and values

Print each key k with its value x from an associative array mymap

Illustration

Idiom #13 Iterate over map keys and values

Print each key k with its value x from an associative array mymap

Illustration
Extra Keywords
table dictionary hash traverse traversal
Extra Keywords
table dictionary hash traverse traversal
Imports
from __future__ import print_function
Imports
Code
for k, v in mymap.items():
	print(k, v)
Code
for k, v in mymap.items():
	print(k, v)