Oct-06-2018, 06:58 AM
hi from a noob
I needed a way to create multi dimensions list...
Didn't find any in the 'native' python ...
So here my first draft, feel free to comment and post you idea
*
Maybe there is a way to subclass List or collections ....

I needed a way to create multi dimensions list...
Didn't find any in the 'native' python ...
So here my first draft, feel free to comment and post you idea

Maybe there is a way to subclass List or collections ....
def mtxNew(*dims): _defv = 0 def mdo(m,ijk): if len(ijk) == 1: m.extend([_defv for x in range(ijk[0])]) else: for x in range(ijk[0]): mx = [] m.append(mx) mdo(mx, ijk[1:]) m = [] mdo(m,dims) return(m) #----------------- m = mtxNew(2,3,4,5) m[1][2][3][4] = 666