Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #32106 > unrolled thread

Re: can we append a list with another list in Python ?

Started byDavid Hutto <dwightdhutto@gmail.com>
First post2012-10-25 05:55 -0400
Last post2012-10-25 05:55 -0400
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: can we append a list with another list in Python ? David Hutto <dwightdhutto@gmail.com> - 2012-10-25 05:55 -0400

#32106 — Re: can we append a list with another list in Python ?

FromDavid Hutto <dwightdhutto@gmail.com>
Date2012-10-25 05:55 -0400
SubjectRe: can we append a list with another list in Python ?
Message-ID<mailman.2827.1351158943.27098.python-list@python.org>
On Thu, Oct 25, 2012 at 5:51 AM, inshu chauhan <insideshoes@gmail.com> wrote:
>
>
>>
>> Is this what you mean:
>>
list_0 = []
list_1 = [i for i in range(0,5)]
list_2 = [i for i in range(5,11)]
list_0.append(list_1)
list_0.append(list_2)
>> >>> for i in list_2:
>> ...     list_1.append(i)
>> ...
>> >>> list_1
>> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
>>
>>
>> or would another example help you out more?
>
>
> No but really sorry this is what I DONT WANT.......
>
> The output I want to have is :
>
> [ [0, 1, 2, 3, 4 ], [5, 6, 7, 8, 9, 10] ].....

Then, this is what you want :

>>david@david-desktop:~$ python
Python 2.7.3 (default, Aug  1 2012, 05:16:07)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> list_0 = []
>>> list_1 = [i for i in range(0,5)]
>>> list_2 = [i for i in range(5,11)]
>>> list_0.append(list_1)
>>> list_0.append(list_2)
>>> list_0
[[0, 1, 2, 3, 4], [5, 6, 7, 8, 9, 10]]
>>>




-- 
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web