1
我有兩個詞典,它們具有相同的鍵但不同的值。我想用dictionary1中的所有值創建一個新字典,並與dictionary2的第二個值進行彙總。從一本詞典中總結出第二個值與另一個詞典中的所有值
input:
dic1 = { 'ENST1' : [ 33, 55, 66, 77 ], 'ENST2' : [ 55, 32, 45 ] }
dic2 = { 'ENST1' : [ 'abc', 100, 200 ], 'ENST2' : [ 'cdg', 200, 300 ] }
output:
dic3 = { 'ENST1' : [ 133, 155, 166, 177 ] , [ 'ENST2' : 255, 232, 245 ] }
我正在使用python 3.6。
你能否詳細說明你已經嘗試過? – thatrockbottomprogrammer
雖然你的價值不加起來? – kbball