Example of what I'm after:
main_names = ['apple', 'orange', 'banana', 'pear', 'mango', 'peach', 'strawberry']
changing_names = ['apple', 'banana', 'cucumber', 'peach', 'pear', 'fish']
changing_values = [100, 200, 300, 400, 500, 600]
output_names = ['apple', 'NA', 'banana', 'pear', 'NA', 'peach', 'NA']
output_values = [100, 'NA', 200, 500, 'NA', 400, 'NA'
added_names = ['cucumber', 'fish']
added_values = [300, 600]
I am using a previous question of mine as reference, Match two lists by index and name, where I have learnt to successfully retrieve output/added_names.
For some background, changing_names and changing_values are linked via their index (Which is where my troubles arise, I would use a dict but I'm not sure how I can manipulate a dict in the way I need)
I don't know how I can shift the changing/added_values list to stay consistent with the index of the output_names list. If there's a way to work with multiple lists while avoiding linking them together via index, I'd be very happy to know.