I have a dictionary which has value as a list.
dictionary = { \'C1\' : [10,20,30] \'C2\' : [20,30,40] } <
dictionary = { \'C1\' : [10,20,30] \'C2\' : [20,30,40] }
dictionary["C1"]=map(lambda x:x+10,dictionary["C1"])
Should do it...