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


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

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

Started byAlec Taylor <alec.taylor6@gmail.com>
First post2012-10-23 18:49 +1100
Last post2012-10-23 18:49 +1100
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 ? Alec Taylor <alec.taylor6@gmail.com> - 2012-10-23 18:49 +1100

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

FromAlec Taylor <alec.taylor6@gmail.com>
Date2012-10-23 18:49 +1100
SubjectRe: can we append a list with another list in Python ?
Message-ID<mailman.2651.1350978566.27098.python-list@python.org>
Python 2.7.3 (default, Apr 10 2012, 23:24:47) [MSC v.1500 64 bit
(AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> [1,2,3,4,5] + [99,88,77,66,0]
[1, 2, 3, 4, 5, 99, 88, 77, 66, 0]

On Tue, Oct 23, 2012 at 6:36 PM, inshu chauhan <insideshoes@gmail.com> wrote:
> can we append a list with another list in Python ? using the normal routine
> syntax but with a for loop ??
>
> --
> http://mail.python.org/mailman/listinfo/python-list
>

[toc] | [standalone]


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


csiph-web