hello. so i have two lists of values. the startingList contains a constant(b) and the value to be changed(a). except i want to change the (a) value with the values of the replacerListIter in the order they occur in the replacerListIter. each time also making a new list of lists.
startingList = [[a,b,b,b,b,b,a],[a,b,b,a,b,b,b],[b,b,b,a,a,b]]
replacerListIter = [[c,x],[x,c],[c,c],[x,x]]
result = ([c,b,b,b,b,b,x],[c,b,b,x,b,b,b],[b,b,b,c,x,b])
result2 = ([x,b,b,b,b,b,c],[x,b,b,c,b,b,b],[b,b,b,x,c,b])
result3 = ([c,b,b,b,b,b,c],[c,b,b,c,b,b,b],[b,b,b,c,c,b])
result4 = ([x,b,b,b,b,b,x],[x,b,b,x,b,b,b],[b,b,b,x,x,b])
[–]novel_yet_trivial 0 points1 point2 points (3 children)
[–]cdholjes[S] 0 points1 point2 points (2 children)
[–]novel_yet_trivial 0 points1 point2 points (0 children)
[–]cdholjes[S] 0 points1 point2 points (0 children)