Peter Otten <__peter__ web.de> writes:
[Deletia]
To Peter Otten and Paul Kroeger:
Thank you both, very much. I think I now get why the binding works as it
does in addition to why the list() approach worked.
(Third attempt - priors not going through, please excuse any repetition
Thank you both, very much. I think I now get why the binding works as it
does in addition to why the list() approach worked.
JBB
--
https://mail.python.org/mailman/listinfo/python-list
Frank Millman chagford.com> writes:
>
>
> "JBB" gmail.com> wrote in message
> news:loom.20140909T073428-713 post.gmane.org...
> >I have a list with a fixed number of elements which I need to grow; ie. add
> > rows of a fixed number of elements, some
I have a list with a fixed number of elements which I need to grow; ie. add
rows of a fixed number of elements, some of which will be blank.
e.g. [['a','b','c','d'], ['A','B','C','D'], ['', 'aa', 'inky', ''], ['',
'bb', 'binky', ''], ... ]
This is a reduced representation of a larger list-of-li