I need to know if it is possible with Pandas or Numpy (Python), the comparison of 2 arrays, to identify new items, deleted items, or items with modified prices.
old_list [[tomato, 10.5],[lettuce, 9],[onion, 8],[cucumber, 5]]
new_list [[tomato, 7],[onion, 8],[cucumber, 5],[potato,9]]
Differences between new_list and old_list
Tomato price changed from 10.5 to 7, lettuce was removed and a new product "potato" was added.