Hi.
I want to sort the keys of my dictionary.
The keys are consisted of list of 3 different numbers, for instance - (0, 5, 0)
So I want to sort them first over key[2], then over key[1] and then over key[0]
Then to print the value accorfing to the sorted keys
The keys should be sorted like this:
0 0 0
5 0 0
0 5 0
5 5 0
0 0 5
5 0 5
0 5 5
5 5 5
Thank you very much