Python iterate słownik w odwrotnej kolejności

for key, val in reversed(myDictionary.items()):
	print(key, val)
Enn