how to print out the keys and the values of a dictionary in python code example
Example 1: howe to print all values and keysin d
for i in d:
print i, d[i]
Example 2: print key of dictionary python
for key, value in mydic.iteritems() :
print key, value