how to return keys and values of a dict in python for loop code example
Example 1: python for k, v in dictionary
for k, v in d.iteritems():
print k, v
Example 2: python loop through dictionary
d = {'x': 1, 'y': 2, 'z': 3}
for key in d:
print key, 'corresponds to', d[key]