Run
my_dict = { 'foo':12, 'bar':14 } key_1 = "bar" value_1 = my_dict[key_1] print(f"Value for the key \"{key_1}\" is {value_1}.")
Output