On Tuesday, September 9, 2014 11:25:29 AM UTC+5:30, JBB wrote:
> 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', 'bink
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)
JBB
--
h
Paul Kroeger prz-wugen.com> writes:
>
> Hello,
>
> I'm myself still learning Python, so others may please correct me, if
> I'm wrong.
...
> I hope, the above helps to understand why this behaviour.is to be
> expected.
>
To Peter Otten and Paul Kroeger:
Thank you both, very much. I think I no
Hello,
I'm myself still learning Python, so others may please correct me, if
I'm wrong.
Consider the following sentence of your link "jeffknupp.com/...":
"some_guy and first_names[0] both refer to the same object"
This is what is going on here.
Am Dienstag, den 09.09.2014, 05:50 + schrieb
JBB wrote:
> 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 representatio
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 of which will be blank.
...
> I am sure th
"JBB" wrote in message
news:loom.20140909t073428-...@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 of which will be blank.
>
> e.g. [['a','b','c','d'], ['A','B','C','D'], ['', 'aa', 'inky', ''], ['',
> 'b
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