I am finding it difficult to iterate through a dictionary in python.
I have already finished learning via CodeAcademy and solo learn but still find it tough to go th
If you are using Python 2
for key, value in d.iteritems():
For Python 3
for key, value in d.items():
As usual the documentation is the best source for information Python 2 Python 3