How do I print out my dictionary in the original order I had set up?
If I have a dictionary like this:
smallestCars = {'Civic96': 12.5, 'Camry98':13.2, 'Sentra98': 13.8}
and I do this:
for cars in smallestCars:
print cars
it outputs:
Sentra98
Civic96
Camry98
but what I want is this:
Civic96
Camry98
Sentra98
Is there a way to print the original dictionary in order without converting it to a list?