How do I print out my dictionary in the original order I had set up?
If I have a dictionary like this:
smallestCars = {\'Civic96\':
Dictionaries are not required to keep order. Use OrderedDict.
OrderedDict