Словарь Python Itare в обратном порядке

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