How to update list contents
I have two list A = [ {‘name’:’Tom’, ‘country’:’American’, ‘birthday’: ‘2001’}, {‘name’:’Tim’, ‘country’:’India’}, {‘name’:’Peter’, ‘country’:’China’}, ] B = [ {‘name’:’Tom’, ‘country’:’China’, ‘birthday’: ‘…’, ‘dream’: ‘…’}, ] We think the list A was a new list and the list B was the old list.I have some problem about how to write a code to upgrade the… Read More How to update list contents