So I have a dict of numbers and strings, like so:
d = {"Hi": None, 2110: 1110, 1110: None}
And I want to print it right to left. Like this:
{1110: None, 2110: 1110, "Hi": None}
How would I go about doing this? If possible I would like to avoid sorting as the dict is already in order, just reverse order, and it seems to me it would take less time to just print it out in reverse than sort it. If I'm wrong, please correct me and sorting is then fine.