Revit / Dynamo - How to get a nested list item.

How to get a nested list item by index in Dynamo (the easy way).

Revit / Dynamo - How to get a nested list item.

I found a super simple way to get a nested list item at index using Design Script using a single node.

The Code Block in the example:

x[0][33][1];

Where:

x      =  Input for your list

[0]    =  Parent List

[33]  =  The nested list item #1 within Parent

[1]    =  The list item nested within the nested list item #1