rs.DivideCurveLength() output shows as Double[], even though it looks like a list of n elements, and cannot be sliced, for example listOfParameters[1:-1] gives an error. It sucks that we can’t use the output of the division function directly and have to rebuild the results into a list, but why is that ? Or maybe I’m doing something wrong, not a programmer meself.
Hmm, cannot upload images, keeps saying “sorry, an error has occured”.
I am sorry for the frustration. You can easily convert the return Double[] to a native python 3 list using the list() function. Slicing would work on the native list.