Python Itererate Dictionary dalam urutan terbalik

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