Find different values between 2 lists of dictionaries with different keys
I have 2 lists: list1 = [ { "address": "1000", "amount": 0 }, { "address": "2000", "amount": 0 }, { "address": "3000", "amount": 0 }, { "address": "4000", "amount": 20 } ] list2 = [ { "account": "1000", "balance": 100 }, { "account": "2000", "balance": 200 }, { "account": "3000", "balance": 300 } ] I… Read More Find different values between 2 lists of dictionaries with different keys