我有一本有价值的字典。
dictionary = { 'C1' : [10,20,30] 'C2' : [20,30,40] }
假设我想将C1列表中的所有值增加10,该怎么做?
dictionary.get('C1') 给我列表,但是我该如何更新?
dictionary.get('C1')
>>> dictionary = {'C1' : [10,20,30],'C2' : [20,30,40]} >>> dictionary['C1'] = [x+1 for x in dictionary['C1']] >>> dictionary {'C2': [20, 30, 40], 'C1': [11, 21, 31]}