a = {7: 0.1, 8: 0.2, 11: 0.1, 12:0.2, 13:0.1, 14: 0.2}
b = [ 100, 200, 300 ]
c = {}expected result c = {7: 100, 11:200, 13:300}
I want to replace the values of a with odd number keys with a new list b consecutively,
and output c with the new value having odd number keys in a, is there any short way to do it ?
