Given a range of numbers from 1 to 81, I want to make 9 lists from range 1 to 81, of 9 lists.
The 1st list would be [1,2,3,4,5,6,7,8,9]. The 2nd list would be [10,11,12,13,14,15,16,17,18], and so on for 9 lists.
Then, I want to be able to print any of the 9 lists of numbers, so the lists would need to be labelled somehow. Perhaps like this:
list 0 = 0[[1,2,3,4,5,6,7,8,9]]. list 1 = 1[[10,11,12,13,14,15,16,17,18]], and so on for 9 lists. Then I can enter a command to print(list[0:]), and the program will print [1,2,3,4,5,6,7,8,9].
I want the program to make the lists, and not to have to make them manually.