Re: Passing a list into a list .append() method

2014-09-09 Thread JBB
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

Re: Passing a list into a list .append() method

2014-09-09 Thread JBB
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

Re: Passing a list into a list .append() method

2014-09-09 Thread JBB
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

Passing a list into a list .append() method

2014-09-08 Thread JBB
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