Does anyone know how to create an array of lists in python?
For example, if I want the final structure to contain data where the 1st dimension is fixed but the 2nd dimension varies:
index 0: [5, 4, 3, 2, 1]
index 1: [6, 5, 4, 3, 2, 1]
index 2: [4, 3, 2, 1]