Organizing a list with a sequence


Here you can see what each lists contain

When I use the script which is provided in the solution the 3rd list isn’t inserted in the two lists provided , I want the third list to be also added/divided into the two sub-list , I don’t know if you got what I mean




The approach that I am trying to do here is so that I can have separate rectangles by joining the upper lines separately with rectangle filling lines and the downward lines

try this?

alignment = IN[0]
edge = IN[1]
curve = IN[2]

result = []
for i in range(len(alignment)):
	temp = [alignment[i], edge[i], edge[i+1], curve[i]]
	result.append(temp)
	
OUT = result

I cannot say thank you enough , saved my life , I am really grateful
Again a lot of thanks

1 Like