Python Iterate Dictionary em ordem inversa

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