Say I have a dictionary with names and ratings:
{"Tom" : 65, "Bob" : 90, "John" : 80...}
and I want to take all the values ββin the dictionary and add 10% to each:
{"Tom" : 71.5, "Bob" : 99, "John" : 88...}
How to do this through all the values ββin the dictionary?
source share