Keeping same Index number

Hey there all
Is it possible to keep same index number? In my case i have list that starts with index number 2, but when i connect it to another node it starts with 0, not with 2. Is it possible to keep index number at 2?

Dictionaries are stored in the order data is received instead of the order they received the data in. This makes them quicker to execute but means iteration consistency of sequence isn’t possible.

To re-establish the sequence, try pulling the keys and use that to sort the list after the fact.

1 Like