Say I had a dictionary, containing float values and I wanted to add a specific float such as 0.1 to each value in the dictionary, how would I go about doing this
{1:0.1, 2:0.2, 3:0.3}
I would want the new dictionary to be
{1:0.2, 2:0.3, 3:0.4}
I know how to do this with a list but I have no clue how to do it with a dictionary