What I came up with is:
keys, values = zip(*[(key, value) for (key, value) in my_dict.iteritems()])
But I am not satisfied. What do the pyt
keys, values = zip(*d.items())