Hi @ayahdemerdash, that’s a great question. In the loop, you are using the /= and *= operators to get the percentages, and reassigning the value to the key. By the end of the loop, content_ratings has changed so that the values are now the percentages. You can see the newly updated dictionary if you add print(content_ratings) after your loop.
Just for fun, if you add print(content_ratings) or print(content_ratings[row])within your loop, you’ll see how the dictionary is being updated. I use this trick a lot when I’m having trouble understanding what is happening in the code or to troubleshoot.