On Wed, Jul 28, 2010 at 1:01 PM, Anand Balachandran Pillai <
abpil...@gmail.com> wrote:

> On Tue, Jul 27, 2010 at 7:03 PM, Vikram K <kpguy1...@gmail.com> wrote:
>
> > Suppose i have this nested list:
> >
> > >>> x
> > [['NM100', 3, 4, 5, 6, 7], ['NM100', 10, 11, 12, 13], ['NM200', 15, 16,
> > 17]]
> > >>> for i in x:
> > ...   print i
> > ...
> > ['NM100', 3, 4, 5, 6, 7]
> > ['NM100', 10, 11, 12, 13]
> > ['NM200', 15, 16, 17]
> > >>>
> >
> > how do i obtain from the above the following nested list:
> >
> > >>> z
> > [['NM100', 3, 4, 5, 6, 7, 10, 11, 12, 13], ['NM200', 15, 16, 17]]
> > >>> for i in z:
> > ...   print i
> > ...
> > ['NM100', 3, 4, 5, 6, 7, 10, 11, 12, 13]
> > ['NM200', 15, 16, 17]
> > >>>
> >
>
> Isn't this the same question you asked in another thread ? Just that
> the list has more members now.
>
>
yeah you're right. The same question was posted elsewhere. I hope the author
responds to the very many replies he got.

>
> > _______________________________________________
> > BangPypers mailing list
> > BangPypers@python.org
> > http://mail.python.org/mailman/listinfo/bangpypers
> >
>
>
>
> --
> --Anand
> _______________________________________________
> BangPypers mailing list
> BangPypers@python.org
> http://mail.python.org/mailman/listinfo/bangpypers
>
_______________________________________________
BangPypers mailing list
BangPypers@python.org
http://mail.python.org/mailman/listinfo/bangpypers

Reply via email to