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] }
why not just skip .get altogether and do something like this?:
for x in range(len(dictionary["C1"])) dictionary["C1"][x] += 10