Suppose I have a dictionary as below
my_dict = {
'key1' : 'str1',
'key2' : 'str2',
'key3' : 'str3'
}
I want to assign additional value to each key so that the structure of dictionary is as follows
key1 : str1, num1
key2 : str2, num2
key3 : str3, num2
Is it possible to do it, if yes then how can we access individual values.