Is there any way to take input data Geometry in L2 (Level1) without custom node

Is there any way to take input data[ Geometry] in L2 (Level1) without custom node

Screen
Screen2

Try adding extra nests to your loop. You’re 4 deep there so you may have to do it twice…

For a in b:
for c in a:
for d in c:
Do your thing here… This will get you to a different level of your list.

1 Like

Not sure I’m clear on the question. Do you mean is there a way without using a python script? Or is your script not working the way you want?

As you can see, the pop() function can get a list at any level you want. The code looks fine.

I want in this code python … geometry input I want to be in level 2 but I don’t have any experience in python

I don’t have any experience in python can you help I want in this code python … geometry input I want to be in level 2

Then it is time to start learning. The code you posted is a good starting project.
I suggest going through some tutorials:
https://www.w3schools.com/python/

1 Like