How to obtain unique elements from a list

Hi everyone,

I wish someone knows how to retrieve elements from this list, starting with element at index 9 and then every twelfth element.

For example, I have the following list and I want to extract elements from L2 at indexes: 9, 21, 33, 45, 57, 69, 81…


I know it is simple in Python, but I don’t know how to do it.

Thanks in advance

hello, with nodes it’s possible

cordially
christian.stan

1 Like

hi you can try this simple logic from ootb nodes

1 Like

I found the way, thanks :slight_smile:


it goes with lancing to shortest

1 Like

python way:

3 Likes

Thanks, it works much better without all of these nodes. I get only what I need. Thanks! :slight_smile:

1 Like