I am currently trying to find a item in a list, take it's position and find that same position in another list to replace it with the item in the first list.
example:
list_1 = ['a', 'b', 'c', 'a', 'b', 'c' ]
list_2 = ['1', '2', '3', '1', '2', '3']
I would try to find 'a', take it's index, find the index in the second list and replace that item in that index. So the ones become 'a' in list_2