how to print out only keys from the dictionary in python code example
Example 1: print key of dictionary python
for key, value in mydic.items() :
print (key, value)
Example 2: print key of dictionary python
for key, value in mydic.iteritems() :
print key, value