In python 2.6 I want to perform an operation on each dictionary value, for example, I want to multiply by 2 for each of them. How to code less for this task?
# Multiply every value in my_dict by 2 for key in my_dict: my_dict[key] *= 2