I have the following lists:
#Note: Both lists only contain numbers, for the sake of clearity in the example there is one with letters
a = [1,2,3,4,5,6]
b = [a,b,c,d,,e,f]
What I need:
example =
1 2 3 4 5 6
a 1,a 2,a 3,a 4,a 5,a 6,a
b 1,b 2,b 3,b 4,b 5,b 6,b
c 1,c 2,c 3,c 4,c 5,c 6,c
d 1,d 2,d 3,d 4,d 5,d 6,d
e 1,e 2,e 3,e 4,e 5,e 5,e
I must be able to access every element of the table since I will use its values (i.e. 4 AND d) as values for another operation.
Since I do not know how this "table" is called, I am having a hard time looking into documentations... Any idea what I am looking for?