He everybody
I'd like to make a list of lists which takes a row of numbers (0 to 126) and makes a list every seventh number, so the list would look like:
list = [[0,1,2,3,4,5,6],[7,8,9,10,11,12,13],[14,15.....]]
i'd like to achieve this by using a loop..any ideas?
Thanks for your help, f.