I have a dict like so:
my_dict = {'hello':'2' , 'foo':'1' , 'foobar':'3'}
I don't want to modify the dict in any way, I just want to iterate through it from the smallest sized key to the largest sized key like so...
for key in my_dict:
print(my_dict[key])
# Results
# 1
# 2
# 3