I am having a list named "V_List" which I am needed to build up a nested list.
V_List = [145, 554, 784, 598, 632, 456, 8989, 123, 777]
I want to have my nested list as following,
result = [ [145, 598, 8989], [554, 632, 123], [784, 456, 777] ]
It should be having a pattern something like this, the 1st element should be gone to the 1st nested list, the 2nd element should be gone to the 2nd nested list, 3rd element should be gone to the 3rd nested list, and again the 4th should go to the 1st nested list....
How can I do something like this?