Run
my_dict = { 'foo':12, 'bar':14 } key_1 = "bar" my_dict[key_1] = "99" print(my_dict)
Output