# 0108.py diz = {'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'x' : 5, 'y' : 6, 'z' : 7} print diz.values() # [1, 3, 2, 4, 6, 5, 7]