Dictionnaire Python itérer dans l'ordre inverse

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