Hello everyone,
I have to code an array that in each row, it has 16 columns! So I called it myself a 17 dimensional array but I was wondering what data sturcture in Python can best represent this keeping in mind that, it should be easily addressable and modifible.
For example, what I had in mind initially was a a list of lists, where the inner list has 16 entries:
0 1 15
0 [ [] [] [] [] ...... [] ]
1 [ [] [] [] [] ...... [] ]
2 [ [] [] [] [] ...... [] ]
.
.
.
I wanted to know what is the Pythonic way of doing this.
Thanks a lot.