proposition for syntax for initialisation of multidimensional lists

N

Nils Grimsmo

i always have trouble explaining why creation of multidimensional lists
is not as straight forward as it could be in python. list comprehensions
are ugly if you are new to the language. i really would like to see it
made easy. i propose using tuples in the same way as integers are now.
example:
[[[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], [[0, 0, 0, 0], [0, 0, 0,
0], [0, 0, 0, 0]]]

this is even less "mathematically bad" syntax than multiplication with
an integer, as multiplication of vectors is only well defined if they
are of the same length. [1] * 7 could be interpreted as a vector of
length one multiplied with a scalar 7 resulting in the vector [7]. (this
was not meant as a proposition to remove the current syntax.)

i would be easy to implement:

class mylist(list):
def __mul__(self, dims):
if dims.__class__ == (()).__class__:
if len(dims) > 1:
return [self.__mul__(dims[1:]) for i in range(dims[0])]
else:
return list.__mul__(self, dims[0])
else:
return list.__mul__(self, dims)

li = mylist()
li.append(0)
print li * (2,3,4)


what do you think?


klem fra nils
 
M

Michael Hoffman

Nils said:
i always have trouble explaining why creation of multidimensional lists
is not as straight forward as it could be in python.

Maybe because that is not really a sensible thing to do with the list
data structure, which can change in length after instantiation?
[[[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], [[0, 0, 0, 0], [0, 0, 0,
0], [0, 0, 0, 0]]]
>
> [SNIP]

what do you think?

I think I will continue doing this:
array([[[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0]],

[[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0]]])
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top