0
我有2個字典的int值作爲鍵。我想從鍵字相同的字典中減去這些值。比較2字典和減去鍵
例子:
dictA={'key1':3, 'key2':4, 'key3':9, 'key5':5}
dictB={'key1':2, 'key2':5, 'key3':5, 'key4':4}
輸出我想要的東西:
difference = {'key1':1,'key2':1,'key3':4,'key4':4,'key5':5}
太棒了,非常感謝你^^。 – Jayyzz