So I have a list, let's say list = [1,2,3,4,5,6,7,8,9,10] and I want to divide it equally between x number, in this scenario let's say 3, how can I make it so it turns into, list = [1,2,3] [3,5,6] [7,8,9,10]
or something similar, I tried dividing a list of 30 items between 25 lists and it gave me 24 single entries and the last one had 5, instead of giving 20 single items and 5 double items perse.