So I'm supposed to make a dictionary get ordered, and the way I'm doing it now is not valid;
dictionary = _collections.OrderedDict(sorted(dictionary.items()))
because it uses the library "_collections", is there any compact way to do this without an imported library?