I have a lengthy script that takes phase name string and adds indices to objects in that phase.
I want to do it to a list of phases but if I just make a list and feed it into the input it will add indices to all of them at once and instead of having e.g. one phase having indices 1-64, and another 1-55 ect. I will have all phases indicated at once 1-119.
How do I run script for each string in the green rectangle separately. Something to do with list.cycle?