Combine List with logic

Dear Experts,
I was trying to combine 5 or more list with the below logic. Tried Join and Combine Nodes. But unfortunately, was not able to do it. Is there any simple way to achieve this?


Combine List.dyn (7.1 KB)

Hello @kvusal do you mean something ?

1 Like

hi, a little python idea from Mr. Draxl yesterday :wink:

edit: thank you I didn’t know how to use the list combine (Thank you M. sovitek )
edit2: correction to be more concise (this is not mine)

import sys
OUT = zip(*IN[:])

cordially
christian.stan

1 Like