Logo

Programming-Idioms

History of Idiom 13 > diff from v9 to v10

Edit summary for version 10 by :

Version 9

2015-08-20, 16:44:29

Version 10

2015-08-20, 18:27:57

Idiom #13 Iterate over map keys and values

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

Idiom #13 Iterate over map keys and values

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

Imports
from __future__ import print_function
Code
for k, v in mymap.items():
	print(k, v)