I'd like to make a 3 dimensional array like this one :
treedarray = [[[0, 0, 0], [0, 0, 0], [0, 0, 0]],
[[0, 0, 0], [0, 0, 0], [0, 0, 0]],
[[0, 0, 0], [0, 0, 0], [0, 0, 0]]]
in this table, every value is (easily) accessible by using :
treedarray [a] [b] [c]
I'd like to know if there is a command to do that more easily.
Thanks in advance.
treedarray = numpy.zeros((3, 3, 3)))