First you might think in order to print dictionary values it’s enough to:
for i in dict: print(i)
But No. This way it’ll only print the keys. In order to print values next to the dictionary keys use:
for key in dict:
print(key, '-', dict[key])