-If I have a list of length n, say:
N = [1, 3, 5, 7] (in this case n = 4)
-I want to generate n lists out of N (so in this case, I will generate 4 lists)
-And I also want the length of these generated lists to be, say, r. (let's say r = 3 in this case):
-And all of these r values should have incrementing values of N
-so, I want something like:
[1, 1, 1]
[3. 3, 3]
[5, 5, 5]
[7, 7, 7]
-Finally, I also want to name them...so something like:
a_1 = [1, 1, 1]
a_2 = [3. 3. 3]
a_3 = [5, 5, 5]